微信小程序是运行在微信的内核中,所以无论我如何设置,在下拉的时候,Page的所有内容都会向下滚动,不知道能否实现我设置的区域是固定的?
我已经试了如何设置,也没用.
“enablePullDownRefresh”: false
.devices-titlebar {
top:0;
width: 100%;
height: 80rpx;
background-color: #353535;
display: flex;
border-bottom: 2rpx solid #f0f0f0;
position: fixed;
z-index:1;
}
滚动区域我设置是列表内容,不包含我的工具栏区域。
我的工具栏区域,我设置了和标题一样的颜色,想固定住这部分
<view class=“devices-titlebar” id=“titlebar” style=“flex-direction:row;”>
</view>
这是滚动区域:
<scroll-view class=“devices-scroll-view” scroll-y=“true” style=“height:100%” bindscrolltolower=“lower”>
<view class=“devices-lists” id=“devices-lists”>
</view>
</scroll-view>