wxml
//使用scroll-view包裹 scrolly-y要写
[scroll-view scroll-y class="mask-box" catchtouchmove=‘ture‘]
[view class="box"]
[view]
[scroll-view]
wxss //样式
.mask-box{
width: 300rpx;
height: 300rpx;
position: fixed;
top: 50%;
left: 50%;
margin-top: -250rpx;
margin-left: -130rpx;
background: pink;
}
//可以滚动
.box{
width: 100%;
height: 600rpx;
}
相关文章
- 10-30js禁止遮罩层下页面滚动
- 10-30阻止小程序遮罩层下方图层滚动
- 10-30小程序遮罩层禁止页面滚动(遮罩层内部可以滚动)
- 10-30微信小程序弹出层禁止页面滚动
- 10-30键盘压缩背景,ios滚动不流畅,禁止遮罩层下面内容滚动
- 10-30移动端弹出遮罩层时防止底部页面滚动
- 10-30js页面弹出遮罩层时,禁止和允许页面滚动方法
- 10-30JS弹出层遮罩,隐藏背景页面滚动条细节优化