1

In my application, where ever the scrollbar comes it should be changed to the custom scrollbar.Is there any way in css to style the scrollbar.If not,Please provide me any suggestions regarding the customizing the scrollbar.

I had seen the jquery plugins for the custom scrollbar,but I need to change the each place for the custom scrollbar .Instead,is there any way such that changing in one place should affect the all places where scrollbar will come in my application.

4

3 回答 3

6

我开发了一个名为 SimpleScrollbar 的自定义滚动条库

它不依赖于任何其他库/框架,gzip 和缩小后小于 1KB。

它使用本机滚动,因此没有 hack,性能也很棒。


您只需要在您的页面中包含该库,并ss-container在您想要使其可滚动的任何 div 中使用该属性。现场示例:

<link href="http://buzinas.github.io/simple-scrollbar/simple-scrollbar.css" rel="stylesheet"/>
<div style="height: 180px; width: 200px; display: inline-block;" ss-container>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<section style="height: 180px; width: 300px; display: inline-block;" ss-container>
  <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>
      <p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?</p>
</section>
<!--[if IE 9]><script src="https://cdn.jsdelivr.net/classlist/2014.01.31/classList.min.js"></script><![endif]-->
<script src="http://buzinas.github.io/simple-scrollbar/simple-scrollbar.min.js"></script>


它适用于所有现代浏览器(Firefox、Chrome、Opera、Safari、Edge)以及 IE10 和 IE11。您还可以通过包含一个 classList polyfill 在 IE9 中使用它。

也支持所有 Android、iOS 和 Windows Phone 浏览器。


如果你想自动找出所有已经有滚动条的元素,你可以这样做:

// After all the content in your page has loaded
document.addEventListener('DOMContentLoaded', function() {
  // Get all elements in your page
  var elements = document.querySelectorAll('*'), el;
  for (var i = 0; i < elements.length, el = elements[i]; i++) {
    // If the scrollheight is higher than the clientheight, it's because it has a scrollbar
    if (el.scrollHeight > el.clientHeight) {
      SimpleScrollbar.initEl(el); // turn the element into a SimpleScrollbar one
    }
  }
});
于 2015-09-06T14:32:08.260 回答
2

You can style the scrollbar in WebKit and older IEs.

To affect all scroll bars, you should be able to use a selector such as body, textarea, .any-other-element-with-overflow-scroll.

Please consider the possible usability issues when using custom scroll bars.

于 2011-09-09T04:39:51.223 回答
1

您可以通过使用设置所有滚动条的样式webkit

::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

上面的代码将更改应用程序中的所有滚动条。你只需要在某处添加它

这是codepen中相同的演示

https://codepen.io/DineshNadimpalli/pen/WNNabZM

于 2019-11-13T17:55:46.177 回答