ドキュメントの高さに関係なく一定の速度でスムーズに実行され、ajaxコンテンツの読み込みを可能にするautoscrolltobottom関数を開発しようとしています。
これが私の試みです
$bottom = 100;
function scroll() {
$('html, body').animate({scrollTop:$bottom}, 2000, 'linear');
$bottom = $bottom + 100;
scroll();
}
scroll();
それを少し改善するための提案はありますか?滑らかさに満足していません。
ありがとう