标签: jquery plugins scroll
我想知道你们中的一些人是否知道一个jquery插件会自动动画滚动到页面底部。基本上这样做的东西,但考虑到所有例外:
$bottom = 50; function scroll() { $('html, body').animate({scrollTop:$bottom}, 4000, 'linear'); $bottom = $bottom + 50; scroll(); } scroll();
答案 0 :(得分:0)
This is the one I used on a site recently.
只需在页面底部制作一个锚点,你应该很好!