0

我想知道你们中的一些人是否知道一个 jquery 插件,它可以自动动画滚动到页面底部。基本上可以做到这一点,但考虑到所有例外情况:

$bottom = 50;
function scroll() {
        $('html, body').animate({scrollTop:$bottom}, 4000, 'linear');
        $bottom = $bottom + 50;
        scroll();
}

scroll();
4

1 回答 1

0

这是我最近在一个网站上使用的。

只需在页面底部制作锚点,您应该会很好!

于 2012-07-13T14:57:18.857 回答