使用 jquery-jScrollpane 插件更改滚动条的背景颜色

发布于 2024-12-18 08:12:11 字数 90 浏览 1 评论 0原文

我正在使用 jquery-jScrollpane 插件。使用该插件,我如何将滚动条的背景颜色更改为透明,并将拖动栏更改为不同颜色(例如橙色)?

谢谢。

I m using jquery-jScrollpane plugin. Using that plugin how can i change the background color of scrollbar as transparent and the Dragging bar in different color say orange?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你列表最软的妹 2024-12-25 08:12:11

可以修改插件自带的css

.jScrollPaneTrack {
    background: transparent;
} /* or just remove the background property*/

.jScrollPaneDrag {
    background: red;
}

或者使用js

$('.jScrollPaneTrack').css('background','transparent');
$('.jScrollPaneDrag').css('background','red');

you can modify the css that comes with the plugin

.jScrollPaneTrack {
    background: transparent;
} /* or just remove the background property*/

.jScrollPaneDrag {
    background: red;
}

or using js

$('.jScrollPaneTrack').css('background','transparent');
$('.jScrollPaneDrag').css('background','red');
春夜浅 2024-12-25 08:12:11

您可以使用此 CSS 更改红色背景:

.jspVerticalBar{
 background-color: transparent;
}

然后将您自己的背景重新声明为任何内容:

.jspTrack{
 background:url(../img/scroll_bar.png) 0 0 repeat-y transparent;
}
.jspDrag{
 background: url(../img/scroll.png) 0 0 no-repeat transparent;
}

这对我有用

You can change red background by using this CSS:

.jspVerticalBar{
 background-color: transparent;
}

and later re-declare your own background to anything:

.jspTrack{
 background:url(../img/scroll_bar.png) 0 0 repeat-y transparent;
}
.jspDrag{
 background: url(../img/scroll.png) 0 0 no-repeat transparent;
}

this worked for me

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文