1. 程式人生 > 其它 >[整理] css 改變滾動條-基於谷歌和火狐

[整理] css 改變滾動條-基於谷歌和火狐

滾動條樣式示例

谷歌

        .test-1::-webkit-scrollbar {
            /*滾動條整體樣式*/
            width: 10px;
            /*高寬分別對應橫豎滾動條的尺寸*/
            height: 1px;
        }

        .test-1::-webkit-scrollbar-thumb {
            /*滾動條裡面小方塊*/
            
            border-radius: 10px;
            background-color: skyblue;
            background-image: -webkit-linear-gradient(45deg,
                    rgba(255, 255, 255, 0.2) 25%,
                    transparent 25%,
                    transparent 50%,
                    rgba(255, 255, 255, 0.2) 50%,
                    rgba(255, 255, 255, 0.2) 75%,
                    transparent 75%,
                    transparent);
        }

        .test-1::-webkit-scrollbar-track {
            /*滾動條裡面軌道*/
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
            background: #ededed;
        }

火狐

            scrollbar-color: skyblue #ededed;
            scrollbar-width: thin;
附記:在茫茫的資訊海洋中,遇到就是有緣,期待回覆交流,為緣分留下痕跡……