手机上未显示背景图片

时间:2018-08-15 21:34:55

标签: android css background-image

使用背景图片在新页面上工作。在台式机和平板电脑上可以正常显示,但在Android手机上无法显示。

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;
 } 

1 个答案:

答案 0 :(得分:0)

之前曾问过这个问题,但这是关于IOS的:How to replicate background-attachment fixed on 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;
 }

相关问题