闪烁的jquery循环插件

发布于 2024-11-01 19:48:38 字数 71 浏览 0 评论 0原文

jQuery 循环插件一会儿会在页面加载时将加载到其中的所有图像显示在一个列中,而我的客户声称这仅适用于 IE9。有办法修复吗?

jQuery cycle plugin for a moment displays all images that are loaded into it in a column when the page is loaded, and my client claims that this is only in IE9. Is there a way of fixing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2024-11-08 19:48:38

这是因为加载插件的延迟。我通常用一些 css 来解决这个问题。在幻灯片周围创建一个 div 并将 css 设置为,这将解决您的问题。

#boxaroundslideshow {
    overflow:hidden; // this is important as it will lose the scrollbars
    display:block;
    width:widthofslideshow;
    height:heightofslideshow;
}

It's because of the delay to load the plugin. I usual fix this with some css. Create a div around the slideshow and set the css to, this will solve your problem.

#boxaroundslideshow {
    overflow:hidden; // this is important as it will lose the scrollbars
    display:block;
    width:widthofslideshow;
    height:heightofslideshow;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文