标签搜索

浏览器滚动条

sunshine
2023-02-16 / 0 评论 / 45 阅读
温馨提示:
本文最后更新于2023年02月16日,已超过569天没有更新,若内容或图片失效,请留言反馈。

好看的浏览器滚动条

<style>
  /* 滚动槽 */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-corner {
    background-color: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #49b1f5;
    background-image: -webkit-linear-gradient(
        45deg, hsla(0, 0%, 100%, 0.4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.4) 0, hsla(0, 0%, 100%, 0.4) 75%, transparent 0, transparent
    );
    border-radius: 2em;
  }

  ::-webkit-scrollbar-track {
    background-color: rgba(73, 177, 245, 0.2);
    border-radius: 2em;
  }
  </style>
感觉很棒,欢迎点赞 OR 打赏~
0
分享到:

评论 (0)

取消