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