遮罩层

深藏阁楼爱情的钟 2023-01-11 13:05 398阅读 0赞
  1. <view class="pop">
  2. <view class="cont">
  3. 内容
  4. </view>
  5. </view>
  6. .pop{
  7. width:100vw;
  8. height:100vh;
  9. background-color: rgba(0,0,0,0.5);
  10. z-index:9;
  11. position: fixed;
  12. left:0;
  13. right:0;
  14. top:0;
  15. bottom:0;
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20. .cont{
  21. background-color: #fff;
  22. width:100px;
  23. height:100px;
  24. z-index:9;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. }

在这里插入图片描述

发表评论

表情:
评论列表 (有 0 条评论,398人围观)

还没有评论,来说两句吧...

相关阅读