Reputation: 3277
I'm trying to make a div follow my scroll events and after my scrolling stops the divs kinda bounce, similar to this website:
http://thespaceinbetween.co.nz
I'm looking for jquery plugins that I might use to create an effect similar to that.
Upvotes: 0
Views: 223
Reputation: 6665
There is a plugin named NICESCROLL --> https://github.com/inuyaksa/jquery.nicescroll
You need to use bouncescroll:"true"
option in your code. See the below code for details
jQuery("html").niceScroll({
bouncescroll: "true",
cursorcolor: "#000000",
boxzoom: false,
autohidemode: false,
cursorwidth: 10
});
Upvotes: 1