Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道你们中的一些人是否知道一个 jquery 插件,它可以自动动画滚动到页面底部。基本上可以做到这一点,但考虑到所有例外情况:
$bottom = 50; function scroll() { $('html, body').animate({scrollTop:$bottom}, 4000, 'linear'); $bottom = $bottom + 50; scroll(); } scroll();
这是我最近在一个网站上使用的。
只需在页面底部制作锚点,您应该会很好!