需要一些帮助编码画廊/作品集
我尝试托管我的 WIP 网站,看看它是如何工作的。除了以下情况外,一切都很顺利: 在我的投资组合页面上: Portfolio
我用 jquery 编写了一个“画廊”。 当页面开始加载时,浏览器似乎会加载 #portfolioSlider
div,该 div 在触发之前应该为 display:none 。它包含大量图像,导致在缩略图 ( #Portfolio
) 开始加载之前需要大量加载时间。
如何使 #portfolioSlider
图像仅在打开后才开始加载?
提前致谢!
I've tried hosting my WIP website to see how it works. Everything goes well except for the following:
On my Portfolio page:
Portfolio
I have coded a "gallery" in jquery.
When the page starts loading it seems that the browser loads the #portfolioSlider
div which is supposed to be display:none until triggered. It contains lots of images resulting in massive load time until the thumbnails ( #Portfolio
) starts loading.
How can I make the #portfolioSlider
images start loading only after it opens?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,不要填充
src
属性,而是将图像的 URI 放入数据属性中。示例:然后,当您要加载它时,将数据移动到 src 中:
Instead of populating the
src
attribute by default, put the URI of the image in a data attribute. Example:Then, when you want to load it, move the data into the src:
只是为了提供想法......
only to give idea....