美文网首页
自定义滚动条样式

自定义滚动条样式

作者: 弹力盒 | 来源:发表于2021-07-02 09:51 被阅读0次
// 自定义滚动条样式
.show-define-scroll-bar {
  overflow-y: auto;
  overflow-x: hidden;
  &::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
  }
  &::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 6px;
    background-color: transparent;
  }
  &::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 6px;
    background: transparent;
  }

  &:hover {
    &::-webkit-scrollbar-thumb {
      /*滚动条里面小方块*/
      border-radius: 6px;
      background-color: rgba(0, 0, 0, 0.2);
    }
    &::-webkit-scrollbar-track {
      /*滚动条里面轨道*/
      border-radius: 6px;
      background: transparent;
    }
  }
}

相关文章

网友评论

      本文标题:自定义滚动条样式

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