根据身体负荷向下滑动一个 div
如何让 div 在页面加载时隐藏,然后在页面加载后向下滑动?我不想使用 CSS display:none;
How can I have a div hide as the page is loading and then slide down once the page loads? I don't want to use CSS display:none;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下这个小提琴: http://jsfiddle.net/ahr3U/
这基本上使用 CSS3 来设置所有过渡的参数(过渡属性使动画成为可能),然后在文档加载后添加可见类以触发动画。
这是代码:
HTML:
CSS:
Javascript:
Give this fiddle a try: http://jsfiddle.net/ahr3U/
This basically uses CSS3 to set up all the parameters of the transition, (the transition property makes the animation possible) and then just adds the visible class once the document has loaded to trigger the animation.
Here is the code:
HTML:
CSS:
Javascript:
这个比较适合我,虽然不会滑下来,但是淡入就足够了。
http://jsfiddle.net/dqUaX/1/
This suits me better, although it does not slide down, fading in is good enough.
http://jsfiddle.net/dqUaX/1/