我正在尝试开发一个自动滚动到底部的功能,它以恒定的速度和平滑的方式独立于文档的高度,并且允许加载 ajax 内容。
这是我的尝试
$bottom = 100;
function scroll() {
$('html, body').animate({scrollTop:$bottom}, 2000, 'linear');
$bottom = $bottom + 100;
scroll();
}
scroll();
有什么建议可以改进一下吗?我对平滑度不满意。
谢谢