0
有什麼辦法可以改變默認的滾動條樣式嗎?或隱藏滾動條並啓用滾動?如何通過javascript或css更改滾動條樣式或隱藏瀏覽器中的滾動條?
有什麼辦法可以改變默認的滾動條樣式嗎?或隱藏滾動條並啓用滾動?如何通過javascript或css更改滾動條樣式或隱藏瀏覽器中的滾動條?
對於隱藏
body {
overflow:hidden;
}在Chrome
變化滾動條和Safari
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px #bebebe;
-webkit-border-radius: 1px;
border-radius: 1px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 1px;
border-radius: 1px;
background: #dcdcdc;
-webkit-box-shadow: inset 0 0 6px #bebebe;
}
::-webkit-scrollbar-thumb:window-inactive {
background: bebebe;
}
可能重複[樣式化CSS滾動條](http://stackoverflow.com/questions/6171460/styling-scroll-bars -with-css) – Barmar 2013-04-04 05:29:46
參見:http://stackoverflow.com/questions/7725652/css-scrollbar-style-cross-browser – Kangkan 2013-04-04 05:31:42