gpt4 book ai didi

css - 使用 css 媒体选择器时,视网膜显示器上是否同时加载了标准和高分辨率图像?

转载 作者:太空宇宙 更新时间:2023-11-04 04:52:35 24 4
gpt4 key购买 nike

我正在使用下面显示的 CSS 为“视网膜”显示器提供高分辨率图像。标准和高分辨率图像是否都加载到“视网膜”显示设备上?或者只是高分辨率图像?

.icon {
background-image: url(example.png);
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
.icon {
background-image: url(example@2x.png);
}
}

最佳答案

最后一页仅使用高分辨率图像。首先加载整个 CSS 样式表,然后浏览器确定它实际需要显示的内容。引用高分辨率图像的 @media 查询将覆盖视网膜设备的 .icon 的原始实例。

关于css - 使用 css 媒体选择器时,视网膜显示器上是否同时加载了标准和高分辨率图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13149125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com