您的位置:首页 > 移动开发 > 微信开发

小程序浮层滚动阻止window窗体滚动JS/CSS处理

2017-09-07 16:07 330 查看
index.wxml
<view class="bgCover" catchtouchmove="disMove"></view>

index.wxss

.bgCover{  position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
left: 0;
top: 0;
}


index.js

//禁止滑动
disMove:function(){

},
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐