滚动条在所有浏览器中样式是否更改?

问题描述 投票:1回答:2

网络技术中是否有任何强大的CSS或jQuery可以在所有浏览器中更改滚动条的样式。我想更改默认的全角窗口屏幕滚动条样式。

jquery html jquery-ui css
2个回答
7
投票

这是一个高度可配置的并且效果很好:http://jscrollpane.kelvinluck.com/

提供了许多示例和文档。

演示整个页面的演示:http://jscrollpane.kelvinluck.com/fullpage_scroll.html


0
投票

以下CSS在Internet Explorer,Microsoft Edge或Firefox中不起作用:

/*used to determine the width of scroll bar*/
::-webkit-scrollbar
{width:5px;}

/*where the draggable handle moves*/
::-webkit-scrollbar-track
{background:#212121;}

/*defining the draggable handle*/
::-webkit-scrollable-thumb
{background:#f1f1f1; border-radius:2.5px}

/*hovering over draggable handle*/
::-webkit-scrollbar-thumb:hover
{background:#555;}
© www.soinside.com 2019 - 2024. All rights reserved.