我在加载视网膜图像时遇到问题。我有两个图像精灵。一个正常,一个视网膜。问题是我不知道如何缩小视网膜图像,它现在是两倍大小。这是我的CSS。
.home {
background: url('../images/buttonSprite.png') -49px -52px;
width: 43px;
height: 43px;
}
@media all and (-webkit-min-device-pixel-ratio: 2) {
.home {
background: url('../images/buttonSprite@2x.png') no-repeat -79px -113px !important;
-webkit-background-size:43px 43px;
}
}
如何解决这个问题呢?