自定义滚动条 css

发布时间 2023-10-09 16:31:12作者: 踏浪小鲨鱼
/* 自定义滚动条 css */
.customScrollbar::-webkit-scrollbar{width:10px;height:10px;}
.customScrollbar::-webkit-scrollbar-thumb{border-radius: 8px;background-color:#47515b;}
.customScrollbar::-webkit-scrollbar-thumb:hover{background-color: #5D626C;}
.customScrollbar::-webkit-scrollbar-button{width:12px;height:12px;}
.customScrollbar::-webkit-scrollbar-button:horizontal:start{background:url(../images/scrollbar.png) no-repeat 0 -30px;}
.customScrollbar::-webkit-scrollbar-button:horizontal:end{background: url(../images/scrollbar.png) no-repeat 0 -48px;}
.customScrollbar::-webkit-scrollbar-button:vertical:decrement{background:url(../images/scrollbar.png) no-repeat -1px -12px;}
.customScrollbar::-webkit-scrollbar-button:vertical:increment{background:url(../images/scrollbar.png) no-repeat -1px 0;}
.customScrollbar::-webkit-scrollbar-corner{background-color: #3D3D46;}