逐渐滚动mousedown直到mouseup

时间:2016-11-24 00:14:03

标签: javascript jquery

如果在position: fixed元素上按下鼠标按钮时,如何逐渐向下滚动视口?

1 个答案:

答案 0 :(得分:2)

您可以使用jQuery.animate()结合setTimeout()clearTimeout()来完成此操作:

$('.button').on('mousedown', function() {
    console.log('Start Animate');
    (function smoothSrcroll() {
        console.log(Math.max($('html').scrollTop(), $('body').scrollTop()));
        $('html, body').stop().animate({
            scrollTop: Math.max($('html').scrollTop(), $('body').scrollTop()) + 100
        }, 1000, 'linear', function() {
            window.timeout = setTimeout(smoothSrcroll(), 0);
        });
    })();
}).on('mouseup', function() {
    console.log('Stop Animate');
    $('html, body').stop();
    clearTimeout(window.timeout);
});

CodePen Demo

我的目标是$('html, body'),因此它可以在Firefox和Chrome中使用。这有点棘手,因为animate()实际上因为两个选择器而运行了两次。为了解决这个问题,我使用了jQuery.stop()。由于Firefox可以使用$('html').scrollTop()而Chrome使用$('body').scrollTop(),因此我使用Math.max()计算了增量。该函数在完成后自行执行,并在释放鼠标时使用clearTimeout()jQuery.stop()