页面加载时如何从页面顶部到页面底部进行动画处理?

发布于 2024-10-09 00:13:30 字数 311 浏览 3 评论 0原文

我的页面高度为 1500px。我想打开该页面,然后从上到下显示该页面以进行审阅。我认为 jQuery animate 可以做到这一点。但我该怎么做呢?我应该在 body 之间添加一个 div content 然后调用 jQuery?我必须添加一个类似 window.onload 的函数吗?至少我的代码不能工作。

jQuery('#content').stop().animate({bottom: '1500px'},300)
.stop().animate({top: '1500px'},300);

I have a page height of 1500px. I want to open the page, then show the page from top to the bottom for a review. I think jQuery animate can do that. But how do I do that? I should add a div content between body then call the jQuery? And must I add a function like window.onload? At least my code can not work.

jQuery('#content').stop().animate({bottom: '1500px'},300)
.stop().animate({top: '1500px'},300);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱倦旧时光 2024-10-16 00:13:30
$(function() {
    $(document.body).animate({scrollTop: '+=1500'}, 2000);
});

如果您获得的所有内容都包含在 #content 中,那么您当然可以将 document.body 替换为它。

$(function() {
    $(document.body).animate({scrollTop: '+=1500'}, 2000);
});

If everything you got is contained by #content, you can replace document.body with that of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文