Html 没有预加载
我必须在 JQuery 中使用一些画廊(我正在使用 Galleria)。问题在于结构如下:
<div id="galleria">
<img src="(...).jpg" />
<img src="(...).jpg" />
<img src="(...).jpg" />
<!-- ... -->
</div>
插件从该列表中获取所有照片并使用它们。问题:我有很多高质量的照片。所有它们都是在插件可以使用它们之前预加载的。有什么方法可以动态加载图像吗? (也许,一些新的画廊插件)。
I have to use some gallery with JQuery (I'm using Galleria). The problem is that the structure is like:
<div id="galleria">
<img src="(...).jpg" />
<img src="(...).jpg" />
<img src="(...).jpg" />
<!-- ... -->
</div>
The plugin takes all photos from that list and use them. The problem: I have a lot of high-quality photos. And all they are preloaded before plugin can use them. Are there any ways to load images dynamically? (Maybe, some new gallery plugin).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是 jQuery LazyLoad 插件 派上用场的地方:)
演示页面
That's where jQuery LazyLoad plugin comes in handy :)
Demo Page