如何在jQuery / javascript中增加slimScroll栏的宽度... 目前只有当用户弹出框时才显示它,一旦用户超出了slimScroll条适合的那个框,它就会被隐藏...
我们使用了“railVisible:true”。
但滚动条会在一段时间内消失,任何想法如何增加停留时间......
答案 0 :(得分: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;
}