7

我有这个大图像作为网站的背景:

body {
    background: #000 url(/assets/img/living.jpg) no-repeat center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height:100%;
}

但在我的移动设备(iPhone 4S - Safari)上,background-attachment: fixed它的效果似乎与在台式机上的效果不同。为什么会这样,我可以使用媒体查询来解决这个问题吗?

4

1 回答 1

20

试试这个——你并不总是需要媒体查询来处理背景图像。CSS3 background-size:cover 属性可以很好地处理这一切。以下内容在我测试过的所有移动设备上都非常适合我——尤其是在 Android、移动版本浏览器和所有平板电脑上。

body { 
    background-image: url(/assets/img/living.jpg); 
    background-repeat: no-repeat; 
    background-position: center;
    background-attachment: fixed;       
    webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height:100%;
    width:100%; 
}   
于 2013-05-01T20:44:47.270 回答