jquery 图像推子,无样式内容的闪存
www.mymediaventure.com
我无法阻止图像在彼此叠放之前闪烁,然后推子启动。
目前,我将除第一个图像之外的所有图像的内联样式属性中的显示设置为无。
然后在 jquery 中显示所有图像。但它会加载图片,然后循环浏览每张图片而不会褪色,然后继续褪色。
www.mymediaventure.com
i can't stop the images flashing up before they are put on top of each other and then the fader starts.
at the moment, im setting display to none in an inline style attribute on all but the first image.
then in the jquery im displaying all the images. but it loads the pictures then cycles through each without fading, and then goes onto the fading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,不要设置
display:none
,而是设置opacity:0
,因为您的淡入淡出插件使用不透明度。希望能解决这个问题。
Well, rather than setting
display:none
, setopacity:0
, as your fading plugin uses opacity.Hope that fixes it.