uniapp scroll-view的滚动条没见了
时间: 2023-08-30 22:10:57 浏览: 191
html,小程序scroll-view去除滚动条
如果你使用的是uniapp中的scroll-view组件,在默认情况下是不会显示滚动条的。不过你可以通过设置scroll-view的属性来显示滚动条。
例如,你可以设置`scroll-x`或`scroll-y`为true来启用横向或纵向滚动条:
```html
<scroll-view scroll-x="true">
<!-- 横向滚动内容 -->
</scroll-view>
```
```html
<scroll-view scroll-y="true">
<!-- 纵向滚动内容 -->
</scroll-view>
```
除了启用滚动条,你还可以通过设置`scroll-bar`属性来自定义滚动条样式。例如:
```html
<scroll-view scroll-x="true" scroll-bar="{{scrollBar}}">
<!-- 横向滚动内容 -->
</scroll-view>
```
```javascript
// 在data中定义scrollBar样式
data: {
scrollBar: {
background: "#ccc",
width: "2px",
borderRadius: "10px",
opacity: "0.8",
},
},
```
这样就可以自定义滚动条样式了。
阅读全文