Css滚动条样式

::-webkit-scrollbar {
        width: 6px;  // y轴滚动条宽度
    height: 6px;  // x轴滚动条宽度
    border-radius: 6px;
        background-color: #F5F5F5;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 6px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        border-radius: 6px;
        background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.44,rgb(60,186,146)),color-stop(0.72,rgb(253,187,45)),color-stop(0.86,rgb(253,187,45)));
        transition: 0.3s ease-in-out;
    }
    ::-webkit-scrollbar-track {
        border-radius: 6px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    }

 

posted @ 2018-06-14 19:11  温柔的风  阅读(14)  评论(0编辑  收藏  举报