如何使用CSS媒体查询将背景图像缩放到查看窗口

时间:2013-03-28 16:57:59

标签: css mobile mobile-safari background-image media-queries

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

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似乎与桌面上的效果不同。为什么这样,我可以使用媒体查询来解决这个问题吗?

2 个答案:

答案 0 :(得分:18)

尝试此操作 - 您并不总是需要媒体查询来处理背景图像。 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%; 
}   

答案 1 :(得分:1)

Arps的回答对我有用。应该更高!

在您的CSS中添加html{height:100%,width:100%}