• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

微信小程序实现自定义遮罩

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
  • 效果图:

  • 代码:

    1. wxml
         <!-- 触发遮罩前的视图-->
         <view>
           <button type="primary" bindtap="showCover">触发遮罩</button>
         </view>
         <!-- 遮罩层 -->
         <view wx:if="{{isShow}}" class=\'cover\'>
           <!-- 可在此按需求自定义遮罩 -->
           <view class=\'cover_child\'>
             <text class="child-title">遮罩详情</text>
             <block wx:for="{{dataList}}">
               <view class="child-row">
                 <text>{{item.title}}</text>
                 <text>{{item.text}}</text>
               </view>
             </block>
           </view>
           <image catchtap="hideCover" class="cross" src="/images/cancel.png " />
           <view catchtap="hideCover" wx:if="{{isShow}}" class=\'bg\'></view>
         </view>
  1. wxss
         .bg {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0, 0, 0, 0.5);
         }
         
         .cover {
           width: 100%;
           height: 100%;
           position: fixed;
           top: 0;
           left: 0;
           display: flex;
           justify-content: center;
           align-items: center;
           z-index: 0;
         }
         
         .cover_child {
           width: 600rpx;
           height: 830rpx;
           background: rgba(255, 255, 255, 1);
           border-radius: 20rpx;
           display: flex;
           flex-direction: column;
           z-index: 5;
         }
         
         .child-title {
           white-space: nowrap;
           margin-left: 43rpx;
           margin-top: 32rpx;
           width: 137rpx;
           height: 32rpx;
           font-size: 34rpx;
           font-weight: bold;
           color: rgba(18, 90, 217, 1);
           line-height: 36rpx;
           margin-bottom: 31rpx;
         }
         
         .child-row {
           display: flex;
           flex-direction: row;
           margin-left: 41rpx;
           margin-top: 40rpx;
           height: 28rpx;
           font-size: 30rpx;
           font-weight: 500;
           color: rgba(3, 3, 3, 1);
           line-height: 36rpx;
         }
         
         .cross {
           margin-bottom: 110rpx;
           bottom: 0rpx;
           position: fixed;
           width: 60rpx;
           height: 60rpx;
           z-index: 5;
         }
  1. javascript
         Page({
           data: {
             isShow:false,
             dataList:[
               {
                 title:"文本类型:",
                 text:"文本内容"
               },
               {
                 title: "文本类型:",
                 text: "文本内容"
               },
               {
                 title: "文本类型:",
                 text: "文本内容"
               },
             ]
           },
           hideCover(){
             this.setData({
               isShow: false
             })
           },
           showCover(){
             this.setData({
               isShow:true
             })
           },
         })

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#类型转换测试小程序发布时间:2022-07-18
下一篇:
【小程序】微信小程序之地图功能发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap