css 显示不同的图像。取决于视网膜设备
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 显示不同的图像。取决于视网膜设备相关的知识,希望对你有一定的参考价值。
.img {
background-image: url('../images/mobile/logo-cp.png');
background-image: -webkit-image-set(
url('../images/mobile/logo-cp.png') 1x,
url('../images/mobile/logo-cp@2x.png') 2x);
background-image: -moz-image-set(
url('../images/mobile/logo-cp.png') 1x,
url('../images/mobile/logo-cp@2x.png') 2x);
background-image: image-set(
url('../images/mobile/logo-cp.png') 1x,
url('../images/mobile/logo-cp@2x.png') 2x);
background-position: 15px center;
background-size: 132px;
background-repeat: no-repeat;
}
以上是关于css 显示不同的图像。取决于视网膜设备的主要内容,如果未能解决你的问题,请参考以下文章
用纯 css 显示视网膜显示图像
为视网膜显示调整图像大小
Retina 显示屏中的像素化图像
在不同的设备上显示不同的图像[关闭]
了解 Retina 设备 CSS 媒体查询
视网膜显示器的矩形尺寸是多少?