以下代码是针对chrome浏览器自定义scrollbar的效果,以下代码实现效果比较全面,除了实现基本外观样式,还加入了一般网站没采用的拖动时改变滑块颜色效果。
::-webkit-scrollbar-track-piece{width:8px;background-color: rgba(28, 36, 56, 0.7);border-radius: 8px; } ::-webkit-scrollbar{width:8px;height:6px ;border-radius: 8px; } ::-webkit-scrollbar-thumb{height:6px;background:#625840;border-radius: 8px; cursor:pointer;} ::-webkit-scrollbar-thumb:window-inactive { background: #625840; } ::-webkit-scrollbar-corner { background: rgba(28, 36, 56, 0.7); } ::-webkit-scrollbar-thumb:hover{background: #796c4f;} ::-webkit-scrollbar-thumb:active{background:#958867;}
效果图
对你有帮助点个赞 。