我有一个100%高度的屏幕,我希望它滚动like this website。一个小卷轴应该把我带到一个师的末尾。
$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);
我正在使用此代码,但它不起作用。帮助
答案 0 :(得分:3)
此代码应该有效:
$( "body" ).scroll(function() {
$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);
});