1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 微信小程序 vue遮罩层出现禁止穿透遮罩滚动页面

微信小程序 vue遮罩层出现禁止穿透遮罩滚动页面

时间:2023-06-01 11:12:30

相关推荐

微信小程序 vue遮罩层出现禁止穿透遮罩滚动页面

vue

<div class="detail-wrapper1" @touchmove.prevent><div>

微信小程序解决方案

解决方案

无 滑动scroll-view组件

在弹出层根元素上添加 catch:touchmove即可,

<view catchtouchmove="catchTouchHandler">...</view>// 禁止滚动catchTouchHandler(){return false;},

有 滑动scroll-view组件

在弹出层下的页面根元素添加动态样式class:

/* *.wxss */.stop-scroll {position: fixed;top: 0;left: 0;height: 100%;width: 100%;overflow: hidden;}

<!-- isShowPopup变量确认是否展示弹窗的变量 -->

<view class="{{ isShowPopup ? 'stop-scroll' : '' }}"><!-- ... --></view>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。