解决移动端background-attachment:fixed

2019-03-21  本文已影响0人  华夏工程师

body {

background: #040019;

}

body:before {

content: "";

background: url(../img/beiJing3.png) no-repeat;

background-size: 100%;

position: fixed;

top: 1rem;

left: 0;

bottom: 0;

right: 0;

z-index: -1;

}

因为background-attachment:fixed属性在移动端不兼容,所以我这里直接弃用了background-attachment:fixed属性,在body背景前添加了一个伪类,固定好位置不随滚动条滚动的特效就出来了。

上一篇 下一篇

猜你喜欢

热点阅读