微信小程序功能------内容区域滚动

页面结构

<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,颜色设为透明可以将滚动条隐藏

posted on 2024-04-24 11:03  昨夜小楼听风雨  阅读(9)  评论(0编辑  收藏  举报