How do I make the scroll bar on a page smooth? And if you can, how to customize it.
Example: link
How do I make the scroll bar on a page smooth? And if you can, how to customize it.
Example: link
This page you mentioned uses a jQuery plugin called NiceScroll .
It's very easy to implement, you just need to put this code inside your <head>
tag.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://areaaperta.com/nicescroll/js/jquery.nicescroll.min.js"></script>
$(document).ready(function(){$("html").niceScroll();
});
I recently used a plugin called jScrollbar in a project. It's very simple to customize the scroll bar and can also make it even smoother.