首页 > 微信 > 详细

小程序遮罩层禁止页面滚动(遮罩层内部可以滚动)

时间:2019-12-27 12:45:22      阅读:550      评论:0      收藏:0      [点我收藏+]

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;
}

小程序遮罩层禁止页面滚动(遮罩层内部可以滚动)

原文:https://www.cnblogs.com/a-pupil/p/12106548.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!