赞
踩
1、布局结构
- <view class="tes" style="margin-top: 15rpx;">
- <p v-html="conten" class="conten"></p>
- </view>
conten 里是内容
2、页面样式
- .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 中的颜色,判断代码都是负责哪一部分
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。