設定谷歌瀏覽器視窗右側滾動條的樣式

admin發表於2017-02-20
本章節分享一段程式碼例項,它實現了設定谷歌瀏覽器滾動條的樣式的效果。

下面一段程式碼能夠實現拖動滾動條時候,使滾動條顏色發生變化。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
::-webkit-scrollbar{
  padding-left:1px;
  background-color:#fafafa;
  overflow:visible;
  width:9px;
}
::-webkit-scrollbar-thumb{
  background-color:rgba(0, 0, 0, .1);
  background-clip:padding-box;
  border-left-width:2px;
  min-height:10px;
  box-shadow:inset 1px 1px 0 rgba(0, 0, 0, .1),inset 0 -1px 0 rgba(0, 0, 0, .07);
}
::-webkit-scrollbar-thumb:vertical:hover{
  background-color:rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-thumb:vertical:active{
  background-color:rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-button{
  height:0;
  width:0;
}
::-webkit-scrollbar-track{
  background-clip:padding-box;
  border:solid transparent;
  border-width:0 0 0 2px;
}
::-webkit-scrollbar-corner{
  background:transparent;
}
::-webkit-scrollbar-track-piece{
  margin: 10px 0;
  -webkit-border-radius: 0;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
}
</style>
</head>
<body style="height:1200px;">
拖動右側滾動條測試效果。
</body>
</html>

相關文章