css CSS Retina背景图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS Retina背景图像相关的知识,希望对你有一定的参考价值。

header {
  background: url(image.jpg);
}
@media (min-resolution: 192dpi){
  header {
    /*using the larger image for retina screens*/
    background: url(image@2x.jpg);
  }
}

For Safari:
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  header {
    background: url(image@2x.jpg);
  }
}

/*
In every HTML element everything EXCEPT THE MARGIN is considered the background layer and is transparent by default.
*/

以上是关于css CSS Retina背景图像的主要内容,如果未能解决你的问题,请参考以下文章

了解 Retina 设备 CSS 媒体查询

css Retina显示图像修复

css 使用Retina图像获得更高分辨率的显示

css 媒体查询高分辨率Retina CSS样式

CSS 适用于iPhone 4的CSS(Retina显示屏)

CSS3 关键帧动画在 Retina 显示屏上反应迟缓