遮罩层
<view class="pop">
<view class="cont">
内容
</view>
</view>
.pop{
width:100vw;
height:100vh;
background-color: rgba(0,0,0,0.5);
z-index:9;
position: fixed;
left:0;
right:0;
top:0;
bottom:0;
display: flex;
justify-content: center;
align-items: center;
}
.cont{
background-color: #fff;
width:100px;
height:100px;
z-index:9;
display: flex;
justify-content: center;
align-items: center;
}
还没有评论,来说两句吧...