微信小程序功能------内容区域滚动
页面结构
<scroll-view class="content-info" scroll-y>
<view style="background: #eee; height: 1000px;"></view>
<view>已到达底部</view>
</scroll-view>
在上面定义了高度,用于将高度撑起来使滚轮条出现
css样式
.content-info{
height: 100%;
}
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
}
通过设置::-webkit-scrollbar将宽高设为0,颜色设为透明可以将滚动条隐藏