最终效果:
WXML
<view class="bg">
<view class="before" style="background-image: url('背景图片.png');"></view>
</view>
WXSS
/*高斯模糊背景*/
.bg{
position: fixed;
top: 0;
left: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
.bg .before{
position: absolute;
top:0;
right:0;
bottom:0;
left:0;
background-size:100% 100%;
background-repeat:no-repeat;
filter: blur(100rpx);
margin:-500rpx;
}
网友评论