0

我们如何在 jQuery / javascript 中增加 slimScroll 条的宽度...目前,它仅在用户播放该框时显示,并且一旦用户离开适合 slimScroll 条的框,它就会变得不可见...

我们使用了属性 "railVisible: true"

但是滚动条一会儿就消失了,不知道如何增加停留时间....

4

1 回答 1

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;
}
于 2012-12-11T05:50:32.290 回答