質問

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