0

is it possible to scroll browser content smoothly without replacing the scrollbar - something like behaviour in this example:

http://manos.malihu.gr/repository/custom-scrollbar/demo/examples/full_page_demo.html

but without removing the original browser scrollbars - just the smooth content movement

all plugins that I have checked helped to smooth mousewheel-page-scroll or jump-to-link-scroll, but I'm looking for smoothing of the move when dragging the build-in browser scrollbar

Picard
  • 3,745
  • 3
  • 41
  • 50
  • Possible duplicate of [Enable smooth scrolling for my website in all browsers](http://stackoverflow.com/questions/19349245/enable-smooth-scrolling-for-my-website-in-all-browsers) – user2226755 Nov 18 '15 at 18:10

1 Answers1

0

You can try : Simplr-SmoothScroll

$(function () {
  $.srSmoothscroll({
    // defaults
    step: 55,
    speed: 400,
    ease: 'swing',
    target: $('body'),
    container: $(window)
  })
})
user2226755
  • 12,494
  • 5
  • 50
  • 73