我知道已经发布了有关此问题的问题,但我之所以更新主题只是因为没有一个答案对我有用。
所以问题是background-size: cover
似乎没有在Android原生浏览器和chrome android浏览器中工作,开头的图像在整个屏幕上显示得像全屏,但是当你滚动时,背景保持不动,并没有沿着屏幕移动。
我用于background-size: cover
html, body {
height: 100%;
min-height: 100%;
}
body.gallery{
background: url(../img/bg-gallery.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}