css 自定义滚动条

310 阅读1分钟

css-tricks.com/custom-scro…

控制滚动条得css 样式

::-webkit-scrollbar              { /* 1 */ }
::-webkit-scrollbar-button       { /* 2 */ }
::-webkit-scrollbar-track        { /* 3 */ }
::-webkit-scrollbar-track-piece  { /* 4 */ }
::-webkit-scrollbar-thumb        { /* 5 */ }
::-webkit-scrollbar-corner       { /* 6 */ }
::-webkit-resizer                { /* 7 */ }

上面css控制对应得位置

1660015292150.jpg

使用css伪类控制具体的状态

:horizontal
:vertical
:decrement
:increment
:start
:end 
:double-button
:single-button
:no-button
:corner-present
:window-inactive

比如:垂直方向滚动条滑块的最小高度为100px

.custom-scrollbar::-webkit-scrollbar-thumb:vertical  {
    min-height: 50px;
}