怎么给小程序添加背景图片且在背景图片上添加遮罩?

page::before{

content: '';

position: fixed;

top: 0;

z-index: -1;

width: 100vw;

height: 100vh;

background: url("") no-repeat center/cover;

}

page::after{

content: '';

position: fixed;

top: 0;

z-index: -1;

width: 100vw;

height: 100vh;

background:rgba(0,0,0,.5);

}

猜你喜欢

转载自blog.csdn.net/weixin_38245489/article/details/81708999