Skip to content

微信小程序——遮罩层样式

微信小程序 | October 27, 2020


文章链接:https://blog.csdn.net/qq_43201350/article/details/109305025

wxml文件

<view class="mark">此处有个遮罩层</view>

wxss文件

.mark {
        position: fixed;
        left:0;
        top:0;
        width:100%;
        height:100%;
        z-index:1000;
        background-color: rgba(0, 0, 0, 0.4);