2012-12-11 59 views
0

我們如何增加jQuery/javascript中slimScroll條的寬度... 目前只有當用戶彈出框並且一旦隱藏用戶超出了slimScroll欄適合的那個框...如何增加jQuery/JavaScript中Slim滾動條的寬度

我們已經使用了propery 「railVisible:true」

但滾動條在一段時間消失,任何想法如何提高逗留的時間....

回答

1

播放使用下面的CSS ...它會工作

::-webkit-scrollbar 
{ 
width: 3px;//increase this value 
height: 9px; 
} 

::-webkit-scrollbar-button:start:decrement, #doc ::-webkit-scrollbar-button:end:increment 
{ 
display: block; 
height: 0; 
background-color: transparent; 
} 
::-webkit-scrollbar-track-piece 
{ 
background-color: #FAFAFA; 
-webkit-border-radius: 0; 
-webkit-border-bottom-right-radius: 8px; 
-webkit-border-bottom-left-radius: 8px; 
} 

    ::-webkit-scrollbar-thumb:vertical 
{ 
height: 50px; 
background-color: #999; 
-webkit-border-radius: 8px; 
} 
::-webkit-scrollbar-thumb:horizontal 
{ 
width: 50px; 
background-color: #999; 
-webkit-border-radius: 8px; 
}