我正在使用下面显示的 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);
}
}