美文网首页
2021-11-19 滚动条样式

2021-11-19 滚动条样式

作者: jinya2437 | 来源:发表于2021-11-19 11:43 被阅读0次
    //滚动条样式------lijinya tart
    ::-webkit-scrollbar {
      width: 9px;
      height: 10px;
    }
    
    
    ::-webkit-scrollbar-track {
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0);
    }
    
    
    ::-webkit-scrollbar-track:hover {
      background-color: rgba(0, 0, 0, 0.06);
      -webkit-box-shadow: -2px 0 0 #fff inset,
      1px 0 0 rgba(255, 255, 255, 0.9) inset,
      0 -1px 0 rgba(255, 255, 255, 0.9) inset,
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    }
    
    
    ::-webkit-scrollbar-track:active {
      background-color: rgba(0, 0, 0, 0.1);
    }
    
    
    ::-webkit-scrollbar-thumb {
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: -2px 0 0 #fff inset, 1px 0 0 #fff inset,
      0 -1px 0 rgba(255, 255, 255, 0.9) inset,
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    }
    
    
    ::-webkit-scrollbar-thumb:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }
    
    
    ::-webkit-scrollbar-thumb:active {
      background: rgba(0, 0, 0, 0.6);
    }
    
    // 设置火狐浏览器的滚动条样式
    * {
      scrollbar-color:rgba(0, 0, 0, 0.1) #fff;
      scrollbar-width: thin;
    }
    
    //滚动条样式------end
    

    相关文章

      网友评论

          本文标题:2021-11-19 滚动条样式

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