移动端背景无法固定解决方案
2016-11-01 本文已影响0人
mickeylight
在项目过程中,遇到这样一个问题,背景图片固定背景,不随着滚动条滚动!
大伙都知道直接用背景固定位就可以解决了!
background:url(...) fixed;
但是在移动端项目使用过程中,这效果始终无法实现背景固定定位,安卓及苹果机都不能有效的背景固定!
所以找了以下方法解决!
body:before {
content: ' ';
position: fixed;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(...) center 0 no-repeat;
background-size: cover;
}