博客园  :: 首页  :: 新随笔  :: 订阅 订阅  :: 管理

美化chrome滚动条(类似iphone效果)

Posted on 2013-04-14 11:07  PHP-张工  阅读(1615)  评论(1编辑  收藏  举报

打开chrome目录下的

C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Chrome\User Data\Default\User StyleSheets\Custom.css

文件,添加如下样式:

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .8);
}
::-webkit-scrollbar-thumb:window-inactive {
  background-color: rgba(0, 0, 0, .2);
}