页面加载时如何从页面顶部到页面底部进行动画处理?
我的页面高度为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您获得的所有内容都包含在
#content
中,那么您当然可以将document.body
替换为它。If everything you got is contained by
#content
, you can replacedocument.body
with that of course.