美文网首页微信小程序
微信小程序实现遮罩及阻止遮罩层下的页面滚动

微信小程序实现遮罩及阻止遮罩层下的页面滚动

作者: 异想天不开_9950 | 来源:发表于2018-12-20 09:39 被阅读0次

    实现遮罩效果

    • Html
    <view class='mask-view'>
      ...
    </view>
    
    • CSS
    .mask-view {
      width: 100%;
      height: 100%;
      position: fixed;
      overflow: hidden;
      background-color: #ffffff;
      z-index: 999;
      top: 0;
      left: 0;
    }
    

    阻止遮罩层下的页面滚动

    只需要在遮罩层上加上catchtouchmove='ture'
    需要注意的是:因模拟器无touch事件,需在真机上测试

    <view class='mask-view'  catchtouchmove='ture'>
      ...
    </view>
    

    相关文章

      网友评论

        本文标题:微信小程序实现遮罩及阻止遮罩层下的页面滚动

        本文链接:https://www.haomeiwen.com/subject/kmmekqtx.html