自定义scrollbar

Posted flytome

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义scrollbar相关的知识,希望对你有一定的参考价值。


.test-1::-webkit-scrollbar {/*滚动条整体样式*/
        width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
        height: 1px;
    }
.test-1::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
        border-radius: 10px;
         -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background: #535353;
    }
.test-1::-webkit-scrollbar-track {/*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 10px;
        background: #EDEDED;
    }

 

以上是关于自定义scrollbar的主要内容,如果未能解决你的问题,请参考以下文章

android自定义滚动条(ScrollBar)样式

自定义scrollbar

自定义滚动条样式

CSS3自定义滚动条的颜色等样式 - hover显示切换 - 伪类::-webkit-scrollbar的样式控制

webkit内核浏览器自定义滚动条样式

如何在 ReactJS 中自定义 malihu-custom-scrollbar-plugin?