1、布局结构
html
<view class="tes" style="margin-top: 15rpx;">
<p v-html="conten" class="conten"></p>
</view>
conten 里是内容
2、页面样式
css
.tes::-webkit-scrollbar-track-piece {
background-color: rgba(0, 0, 0, 0);
border-left: 1px solid rgba(0, 0, 0, 0);
}
.tes::-webkit-scrollbar {
display: block;
width: 5px;
height: 10px;
-webkit-margin-bottom-collapse: 12px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.tes::-webkit-scrollbar-thumb {
background-color: #b2b2b2;
background-clip: padding-box;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
min-height: 28px;
}
.tes::-webkit-scrollbar-thumb:hover {
background-color: #e6e6e6;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
可以通过改变css 中的颜色,判断代码都是负责哪一部分