为 jQuery Cycle 插件预加载图像

发布于 2024-07-11 16:25:25 字数 356 浏览 8 评论 0原文

我对 jquery 很陌生,并试图弄清楚如何为 jQuery Cycle 插件预加载图像。

我有 5 个以上的大尺寸图像,我需要在使用 Cycle 插件开始幻灯片放映之前预加载这些图像。 我还需要在预加载图像时显示加载 gif。

我尝试在这里实现该技术 http://jqueryfordesigners.com/image-loading/

但是仍然不知道如何让它与 Cycle 插件一起工作。

谁能帮我解决这个问题吗?

谢谢

I’m quite new to jquery and trying to figure out how to preload images for the jQuery Cycle Plugin.

I have 5+ large size images and I need those to be preloaded before starting the slideshow with Cycle plugin. Also I need to display a loading gif wile it preloads the images.

I have tried to implement the technique here http://jqueryfordesigners.com/image-loading/

but still couldn’t figure out how to make it work with the Cycle plugin.

Can anyone please help me with this?

Thanks

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

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

发布评论

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

评论(2

伤感在游骋 2024-07-18 16:25:25

...或者,如果您遇到的是图像转换之间的暂停,请将此参数添加到循环函数中。 它使循环忽略非 img 内容,例如空格和换行符,这可能导致循环在转换之间暂停。

jQuery('.imageslideshow').cycle({
    slideExpr: 'img',
    // other options
});

...or if what you are experiencing is a pause between image transitions, add this argument to the cycle function. It makes cycle ignore non img content, such as whitespace and linebreaks, which can cause cycle to pause between transitions.

jQuery('.imageslideshow').cycle({
    slideExpr: 'img',
    // other options
});
像你 2024-07-18 16:25:25

设法使其正常工作..

http://www.thefancyhouse.com/charlienutting/

感谢当然是大卫。

我从你那里得到了这个想法..但是不同的方法:)

我正在快速学习 Jquery。

感谢大家!

Manage to make it working..

http://www.thefancyhouse.com/charlienutting/

Thanks to David of course.

I got the idea from you.. but different approach :)

I'm learning Jquery fast.

Thanks everyone!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文