我在iPhone 5上...我開始更新我的網站,使用視網膜圖像。一切都在Safari中完美運行。出於某種原因,我的body
的背景圖像沒有使用它,而且它的超級模糊。有任何想法嗎?這是一個錯誤?這就是我對視網膜顯示媒體查詢:Chrome iOS不使用視網膜背景圖像
body {
background:
url(../images/logo.png) no-repeat,
url(style/images/dark/bg5.jpg) 50% 0 no-repeat,
url(style/images/dark/bg5_repeater.png) repeat bottom;
background-attachment: fixed;
background-color:#09273e;
color:#e4e4e4;
background-position: 15px 10px, top, bottom;
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
body, #header {
background: url(../images/dark/[email protected]) repeat;
background-size: 70px 70px;
}
}
這裏是鏈接到文件和代碼行,在我的到位桶:http://bit.ly/Sxevfg
這裏是Safari和Chrome之間的一些截圖太iOS 7.1.1。
非常感謝
剛剛注意到,在移動設備上查看此頁面,stackoverflow時,屏幕截圖爲像素化LOL – jaminroe