jQuery 淡入 OnLoad?
好吧,我只是在寻找一个简短/简单的脚本,它允许我替换 DIV 名称,以便我可以在页面上有多个 div 在加载后淡入淡出(包括其中的图像)。
有什么想法吗?
谢谢你!
Okay what I am simply looking for is a short/easy script that will allow me to replace the DIV name so that I can have multiple divs on a page fadein once loaded (including images within them).
Any ideas?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
给div一个公共类(例如“fade”)并使用类似于此的代码
http://jsfiddle.net/5td73/
Give the divs a common class (e.g. "fade") and use code similar to this
http://jsfiddle.net/5td73/
将此代码放入您的 javascript 文件中,为每个要淡入淡出的元素添加
class="fadeOnLoad"
代码,并确保将display: none
添加到 css您想要在加载时隐藏的任何元素:Put this code in your javascript file, for each element you want to fade it add the
class="fadeOnLoad"
code and make sure to adddisplay: none
to the css for any elements you want to have hidden on load: