在jQuery中设置-webkit-scrollbar-thumb可见性

时间:2012-09-23 18:53:15

标签: jquery css webkit scrollbar

我尝试通过jquery设置滚动条拇指的可见性,如下所示:

$('-webkit-scrollbar-thumb').css('visibility', 'hidden')

但它实际上并没有做任何事情。这是我的CSS定义:

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    background: rgba(150, 150, 150, 0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
    border-radius: 2;
    margin: 5px;
}

我无法通过隐藏溢出来禁用滚动,因为我仍然需要启用滚动功能,我只需要通过javascript隐藏滚动条拇指。

2 个答案:

答案 0 :(得分:8)

你不能用jQuery查询html伪元素 您需要对此类规则使用变通方法:在css中指定2个不同的规则:

/*normal*/
::-webkit-scrollbar-thumb {
    /*...*/
}

/*hidden*/
.hide-scrollbar ::-webkit-scrollbar-thumb{
    visibility : hidden;
}

然后只需通过添加/删除根节点(html)中的类来启用/禁用它们:

$('html').addClass('hide-scrollbar');
// now the second rule is active and the scrollbar is hidden

答案 1 :(得分:3)

您可以使用纯JavaScript执行此操作:

document.styleSheets[2].addRule("::-webkit-scrollbar-thumb", "visibility: hidden;");

为了能够选择合适的样式表,请为其添加标题(使用titlelink标记中的style属性),然后执行以下操作:

for(var i = 0; i < document.styleSheets.length; i ++) {
    var cursheet = document.styleSheets[i];
    if(cursheet.title == 'mystylesheet') {
        cursheet.addRule("::-webkit-scrollbar-thumb", "visibility: hidden;");
    }
} ​