微信小程序—scroll-view 设置scroll-x或者scroll-y如何去掉滚动条
第一种方法:文章来源:https://www.toymoban.com/news/detail-724955.html
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}
.scroll-view::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}
第二种方法:添加( enhanced :show-scrollbar=“false”)文章来源地址https://www.toymoban.com/news/detail-724955.html
<scroll-view
:style="{ height: height + 'rpx' }"
scroll-x
class="scroll-view"
enhanced
:show-scrollbar="false"
>
</scroll-view>
到了这里,关于微信小程序---scroll-view 设置scroll-x或者scroll-y如何去掉滚动条的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!