scroll-view 隐藏滚动条
::-webkit-scrollbar { display:none; width:0; height:0; color:transparent; }
阻止滚动的方法
page-meta
页面属性配置节点,用于指定页面的一些属性、监听页面事件。只能是页面内的第一个节点。可以配合 navigation-bar 组件一同使用。
通过这个节点可以获得类似于调用 wx.setBackgroundTextStyle
wx.setBackgroundColor
等接口调用的效果。
https://developers.weixin.qq.com/miniprogram/dev/component/page-meta.html
<page-meta style="overflow:{{isall?'hidden': 'visible'}}"> //滚动的元素 <view class="page {{isall ? 'scroll-lock' : ''}}" </view> </page-meta>
wxss
.scroll-lock {
height: 100%;
overflow-y: hidden;
}