美文网首页
使用CSS美化滚动条

使用CSS美化滚动条

作者: 喜剧之王爱创作 | 来源:发表于2019-12-16 17:17 被阅读0次
/*整体部分*/ 
::-webkit-scrollbar
{
    width: 10px;
    height: 10px;
}
/*滑动轨道*/ 
::-webkit-scrollbar-track
{
    border-radius: 0px;
    background: none;
}
/*滑块*/
::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
    background-color: rgba(255,255,255,.75)
}
/*滑块效果*/ 
::-webkit-scrollbar-thumb:hover
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
    background-color: rgba(85, 85, 85, 0.4);
}

相关文章

网友评论

      本文标题:使用CSS美化滚动条

      本文链接:https://www.haomeiwen.com/subject/wgpdnctx.html