附上一个修改过的Chrome滚动条扩展:Thin Scroll Bar
扩展原始链接在这里:Thin Scroll Bar
基于webkit的浏览器现在也可以自定义其样式,本站所用样式如下:
::-webkit-scrollbar/*整体部分*/ { width: 10px; height:10px; } ::-webkit-scrollbar-track/*滑动轨道*/ { -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); border-radius: 0px; background: rgba(0,0,0,0.1); } ::-webkit-scrollbar-thumb/*滑块*/ { border-radius: 5px; -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); background: rgba(0,0,0,0.2); } ::-webkit-scrollbar-thumb:hover/*滑块效果*/ { border-radius: 5px; -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); background: rgba(0,0,0,0.4); }
需要其他规则请自行搜索