处理带有背景图像的新页面。 在台式机和平板电脑上显示正常,但在安卓手机上显示失败。
body {
background: url("images/bk1.jpg") no-repeat center center fixed;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
}
这个问题之前被问过,但它是关于IOS的: 如何复制iOS上固定的背景附件
我认为与背景附件相关的问题已修复,因此我认为您需要将其设置为这样:
*注意:背景附件的属性在移动设备上不起作用
body {
background: url("images/bk1.jpg") no-repeat center center;
background-attachment: fixed;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
}