微信小程序中遮罩層的滾動穿透問題

1.若是彈出層沒有滾動事件,就直接在蒙板上加catchtouchmove=」move」  move: function(){};xss

<!-- wxml -->
<view class='mask' catchtouchmove="move"></view>
// js
move:function(){}

2.若是彈出層有滾動事件,那麼在彈出層出現的時候給底部的content加上一個class,消失的時候移除。spa

<!-- wxml -->
<view class="bodyLock">
/* wxss */
.bodyLock{
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 0;
}
相關文章
相關標籤/搜索