使用媒体查询逐步加载图像

发布于 2024-12-08 16:03:23 字数 309 浏览 0 评论 0原文

如果我在 800px 宽的屏幕上打开它,小 jpg 和大 jpg 都会被加载吗?或者浏览器是否足够智能,可以忽略较小的图像?

@media screen and (min-width: 480px) {
    div {
        background-image: url(images/small.jpg);
    }
}

@media screen and (min-width: 600px) {
    div {
        background-image: url(images/big.jpg);
    }   
}

If I opened this on a screen 800px wide, would both the small and big jpg be loaded? or is the browser intelligent enough to ignore the smaller image?

@media screen and (min-width: 480px) {
    div {
        background-image: url(images/small.jpg);
    }
}

@media screen and (min-width: 600px) {
    div {
        background-image: url(images/big.jpg);
    }   
}

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

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

发布评论

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

评论(1

七堇年 2024-12-15 16:03:23

由于两个媒体查询都将得到满足,并且两个规则都使用相同的选择器,因此第二个 div 规则将优先,并且只会为任何 加载 big.jpg div。一旦您调整浏览器窗口的大小直到第二条规则不再适用,它应该继续加载 small.jpg

我用你的 CSS 做了一个快速测试页面。 Firebug 的 Net 面板验证了 big.jpg 是以我常用的浏览器大小加载的,而 small.jpg 仅在我将浏览器窗口设置得足够窄后才加载。

Since both media queries will be fulfilled and both rules use the same selector, the second div rule will take precedence, and only big.jpg will be loaded for any div. Once you resize the browser window until the second rule no longer applies, it should go ahead and load small.jpg.

I made a quick test page with your CSS. Firebug's Net panel verified that big.jpg was being loaded at my usual browser size, and small.jpg only loaded once I made my browser window narrow enough.

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