在两个 y 位置之间手动滚动时如何自动.scrollTo()
(使用插件)?(if()
里面声明.scroll()
)
我在下面的代码看起来很简单。但是,滚动有点颠簸,当它自动滚动到内容时,滚动就卡在那里了。好像它想做两件事。
scrollToContent = function() {
$(document).stop(1, 1).scrollTo($('.content'), 750, { easing: 'easeInOutQuint' });
}
$(window).scroll(function() {
if ($(this).scrollTop() <= $(this).height()) {
scrollToContent();
}
});