美文网首页
解决移动端background-attachment:fixed

解决移动端background-attachment:fixed

作者: 华夏工程师 | 来源:发表于2019-03-21 10:50 被阅读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背景前添加了一个伪类,固定好位置不随滚动条滚动的特效就出来了。

相关文章

网友评论

      本文标题:解决移动端background-attachment:fixed

      本文链接:https://www.haomeiwen.com/subject/xlxuixtx.html