uniapp遮罩层禁止页面上下滑动
文章描述:
uniapp开发微信小程序在弹出遮罩层时,会发现可以上下滑动,怎么禁止页面上下滑动?
template
<view class="popup-bg" catchtouchmove="true"></view>
<view class="popup-cont ">
<view>用户选项</view>
</view>
style
.popup-bg{
width: 100%;
height: 100%;
position: fixed;
top: 0;
bottom: 0;
background-color: rgba(1,1,1,0.3);
}
.popup-cont{
width: 80%;
height: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 12rpx;
background-color: #ffffff;
}
发布时间:2023/01/13
发表评论