微信小程式彈窗禁止頁面滾動的實現程式碼
阿新 • • 發佈:2021-01-03
下面給大家介紹下小程式彈窗禁止頁面滾動的效果:
在小程式彈窗時,外部頁面禁止滾動
, 可以在最外部容器設定catchtouchmove
但是如果彈窗內部也需要滾動,需要用scroll-view
包裹,並設定scroll-y
catchtouchmove
需要接收個方法,不然會一直警告
<view class="box">佔位</view> <view class="pop" catchtouchmove="touchMove"> <view class="popbg"></view> <view class="popup"> <scroll-view scroll-y> <view class="row" wx:for="{{10}}" wx:key="index">{{index}}</view> </scroll-view> </view> </view>
.box { height: 120vh; } .popbg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0.7); } .popup { position: fixed; top: 20%; left: 50%; transform: translate(-50%,0); width: 70%; background: #fff; z-index: 1; } scroll-view { height: 500rpx; } .row { width: 100%; height: 200rpx; }
Page({ touchMove() { return } })
到此這篇關於微信小程式彈窗禁止頁面滾動的文章就介紹到這了,更多相關小程式彈窗禁止頁面滾動內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!