如何在单个滚动中滚动到div的末尾

时间:2014-07-24 11:47:48

标签: javascript jquery html5 css3 scroll

我有一个100%高度的屏幕,我希望它滚动like this website。一个小卷轴应该把我带到一个师的末尾。

$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);

我正在使用此代码,但它不起作用。帮助

1 个答案:

答案 0 :(得分:3)

此代码应该有效:

$( "body" ).scroll(function() {
    $('html, body').animate({
        scrollTop: $("#target-element").offset().top
    }, 1000);
});