CSS 图像缓存

发布于 2024-07-15 23:43:20 字数 379 浏览 5 评论 0原文

就客户端图像缓存而言,以下内容之间是否存在区别:

**Option #1**
<div style="background:url('myimage.jpg');display:none;"></div>

**Option #2**
<div id="myimage"></div>

style.css
#myimage {
     background:url('myimage.jpg');
     display:none;
}

编辑:我不确定这是否重要,但上述 DIV 首先使用 style="display:none;" 加载到另一个页面上

In terms of client-side image caching, is there a difference between the following:

**Option #1**
<div style="background:url('myimage.jpg');display:none;"></div>

and

**Option #2**
<div id="myimage"></div>

style.css
#myimage {
     background:url('myimage.jpg');
     display:none;
}

EDIT: I'm not sure if it matters but the above DIVs are first loaded on another page with style="display:none;"

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

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

发布评论

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

评论(2

离旧人 2024-07-22 23:43:20

否。客户端缓存由服务器在图像请求中返回的标头控制,而不是由 CSS 控制。

顺便说一句,如果您正在寻找图像缓存,我强烈建议使用 CDN。 Amazon 的 CloudFront 使这一切变得简单且便宜。

No. Client caching is controlled by headers returned from the server in the request for the image, not the css.

As an aside, if you're looking for image caching, I highly recommend using a CDN. Amazon's CloudFront makes this easy and cheap.

岁月静好 2024-07-22 23:43:20

不会。另请注意,某些浏览器不会缓存隐藏元素中的图形(无论您是直接隐藏它们还是隐藏其父元素之一)。

No. Also note that some browsers won't cache graphics ih hidden elements (regrardless of whether you hide them directly or hide one of their parent elements).

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