ページの下部へのスクロールを自動的にアニメーション化する jquery プラグインを知っている人がいるかと思います。基本的にこれを行うものですが、すべての例外を考慮して:
$bottom = 50;
function scroll() {
$('html, body').animate({scrollTop:$bottom}, 4000, 'linear');
$bottom = $bottom + 50;
scroll();
}
scroll();