小程序 弹出层有滚动事件 处理方法

转至:https://blog.csdn.net/mcyang0929/article/details/79162090

1.如果弹出层没有滚动事件,就直接在蒙板上加catchtouchmove=”move” move:function(){};

wxml


js

//在page中添加一个函数,这个函数内容为空

move:function(){}

2.如果弹出层有滚动事件,那么在弹出层出现的时候给底部的content加上一个class,消失的时候移除。

wxml


wxss

.bodyLock{
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 0;
}

你可能感兴趣的:(小程序 弹出层有滚动事件 处理方法)