jQuery - “等到准备好”?
我的网站上有这个滑块:
http://css-tricks.com/examples/AnythingSlider/
它工作正常,但我不喜欢它的加载方式(您可以在准备好之前看到带有列表点的图像列表)。
有没有一种通用的方法可以绕过它?如何在后台加载滑块,以便用户在其完全加载之前看不到它(例如,当它在后台加载时,我可以显示 preloader.gif)。
我在考虑不透明度:0 &在 DOM 中的滑块之后使其淡出,但也许还有其他方法?
I have this slider on my website:
http://css-tricks.com/examples/AnythingSlider/
It works fine, but I don't like the way it loads (you can see list of the images with list dots before it is ready).
Is there a universal way of bypassing that? How to load the slider in the background so users don't see it UNTIL it's fully loaded (while it loads in the background I could display preloader.gif for example).
I was thinking about opacity: 0 & fading it after the slider in DOM, but maybe there's other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我倾向于使用以下模式:
I tend to use the following pattern:
我会说应用 css
,然后在加载滑块后使用 jQuery 更改它。
I would say apply css
and then change it with jQuery after the slider is loaded.