문제

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