最近几天我读了很多关于这个话题的文章,但我没有找到解决方案。我有两个精灵集,一个用于正常显示的低质量,一个用于视网膜显示的高质量。
我的问题是,我的网站必须响应,图形应该根据浏览器窗口调整大小。但是有了这个background-size
属性,我似乎无法告诉浏览器调整精灵的大小。这是我到目前为止得到的:
#logo-img {
max-width: 100%;
text-indent: -9999px;
height: 85px;
width: 360px;
background-image: url('/images/sprites-sa026cef942.png');
background-position: 0 -2609px;
background-repeat: no-repeat;
overflow: hidden;
outline: 0 none !important;
display: block;
white-space: nowrap;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5) {
#logo-img {
background-image: url('/images/sprites-retina-se61e802cf4.png');
background-position: 0 -2601px;
-webkit-background-size: 360px, auto;
-moz-background-size: 360px, auto;
-o-background-size: 360px, auto;
background-size: 360px, auto;
}
}
HTML是
<a href="#" id="logo-img">
<h1>My logo text</h1>
</a>
一切正常,除了在移动设备上或调整浏览器窗口大小时。徽标被剪切,并且不会调整到浏览器窗口的大小。我正在玩,max-width: 100%;
但这height: auto;
只会影响轮廓,而不是里面的精灵。
希望有人知道解决方案。它不必与 IE8 兼容,但它会很好;)
编辑
在使用精灵之前,我曾经background-size: contain;
确保背景图像的大小调整为元素的大小:
#logo-img {
background:url(../images/sprites-retina/logo.png) no-repeat center center;
background-size: contain;
max-width: 100%;
text-indent:-9999px;
height: 85px;
width: 360px;
overflow: hidden;
outline: 0 none !important;
display: block;
white-space: nowrap;
}
这很好用,但是我不能使用精灵表。也许这说明了我的意思。
编辑2
我做了一个小提琴http://jsfiddle.net/euvRD/2/