小顺序显现弹窗时制止基层的内容转动
小顺序显现弹窗时制止基层的内容转动
① 第一种体式格局
应用position:fixed. 制止页面转动.
一. 页面构造html
<view class=”indexPage {{proInfoWindow?’indexFixed’:”}}”>
-----------此处为全部页面的构造内容
<button catchTap="_proInfoWindowShow">点击显现弹窗</button>
</view>
// 当proInfoWindow为true的时刻显现弹窗
<view wx:if=”{{proInfoWindow}}”>此处为弹窗内容</view>
二. CSS部份
//增加一个类名, 把弹窗的基层内容定位为fixed.完成制止转动的结果
.indexFixed{
position: fixed;
top:0;//top:0可不写,不然显现弹窗的同时会使底层转动到顶部.
left:0;
bottom:0;
right:0;
}
三. JS部份
Page({
data: {
proInfoWindow:false,//掌握弹窗是不是显现
},
// 点击弹窗事宜, 设置proInfoWindow为true, 显现弹窗.
// 设置proInfoWindow为true的同时, 给页面增加了一个class名为indexFixed的类.显现弹窗时基层就制止转动,关掉弹窗时就能够转动.
_proInfoWindowShow(){
this.setData({
proInfoWindow:true
})
}
})
②第二种体式格局
用 catchtouchmove="return"
//此处为弹窗内容
<view catchtouchmove=”return”> //外层加 catchtouchmove=”return”仅触摸背景地区时不穿透底部.
<view catchtouchmove="return"></view> //在每一个小的地区内加 catchtouchmove="return"
<view> // 有须要转动的列表地区位置不要加 catchtouchmove="return", 不然列表没法转动
<view>转动列表1</view>
<view>转动列表2</view>
<view>转动列表3</view>
<view>转动列表4</view>
</view>
</view>