你知道为什么,在我的网站上,全屏背景在 ipad 上不起作用吗?非常感谢
我试过这个:
#presentation {
height: 1300px;
background: #afc9ff;
background: url(../images/bg-24.jpg) no-repeat center fixed;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
和这个
#activity {
height: 1300px;
background: #8aba56;
padding-top: 150px;
background: url(../images/bg-22.jpg) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
}