自定义滚动条 [英] Custom scrollbars

查看:154
本文介绍了自定义滚动条的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序中,滚动条的位置应该更改为自定义滚动条。是否有任何CSS样式的滚动条。如果不是,请提供关于自定义滚动条的任何建议。



我已经看到了自定义滚动条的jquery插件,但我需要更改自定义滚动条的每个位置。相反,是否有任何方法可以在一处更改应该会影响到我已经开发了一个

.com / buzinas / simple-scrollbarrel =noreferrer>名为SimpleScrollbar的自定义滚动条库

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



它使用原生滚动,所以没有黑客,性能也很棒。






您只需将图书馆加入您的网页,请在任何要制作可滚动的div中使用 ss-container 属性。现场示例:

< link href =http://buzinas.github.io/simple-scrollbar/simple-scrollbar.css

  

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






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

  //在页面中的所有内容加载
之后document.addEventListener('DOMContentLoaded',function(){
//获取所有元素您的页面
var elements = document.querySelectorAll('*'),el;
for(var i = 0; i< elements.length,el = elements [i]; i ++){
//如果scrollheight高于clientheight,那是因为它有一个滚动条
if(el.scrollHeight> el.clientHeight){
SimpleScrollbar.initEl(el); //打开元素放入一个SimpleScrollbar中
}
}
});


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.

解决方案

I've developed a custom scrollbar library named SimpleScrollbar.

It does not depend on any other library/framework, and it's less than 1KB after gzip and minification.

It uses the native scroll, so there are no hacks, and the performance is awesome.


You only need to include the library in your page, and use the ss-container attribute in any div that you want to make scrollable. Live example:

<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>


It works on all the modern browsers (Firefox, Chrome, Opera, Safari, Edge), and on IE10 and IE11. You can also use it in IE9 by including a classList polyfill.

All Android, iOS and Windows Phone browsers are supported either.


If you want to automatically find out all the elements that already have a scrollbar, you can do something like that:

// 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
    }
  }
});

这篇关于自定义滚动条的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆