سؤال

I use jScrollPane plugin and my code:

<script type="text/javascript" id="sourcecode">
  $(function()
  {
  $('#mycontent').jScrollPane();
});
</script>

And it's work. But i want add smooth effect my scrollbar. How can i do like this? http://manos.malihu.gr/tuts/custom-scrollbar-plugin/fluid_scrollbar_example.html

هل كانت مفيدة؟

المحلول

Add a transition to 'top' css property to .jspDrag

.jspDrag{
    transition: top 0.3s ease-out;
}

It works only for scrollbar, for content you can do the same with .jspPane but it's buggy with mouseWheel

so I suggest to use another library supporting smooth scroll :

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top