如何使用jquery向下滚动到iframe或页面的底部?
3 回答
函数式编程
TA贡献1807条经验 获得超9个赞
如果你想要一个漂亮的慢动画滚动,对于任何有href="#bottom"这个的锚将滚动你到底部:
$("a[href='#bottom']").click(function() {
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
return false;
});
随意更改选择器。
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
scrollTop()返回从可滚动区域中隐藏的像素数,因此给它:
$(document).height()
实际上会超出页面底部。对于在页面底部实际“停止”的滚动,浏览器窗口的当前高度需要减去。如果需要,这将允许使用缓动,因此它变为:
$('html, body').animate({
scrollTop: $(document).height()-$(window).height()},
1400,
"easeOutQuint"
);
- 3 回答
- 0 关注
- 700 浏览
添加回答
举报
0/150
提交
取消