Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $(document).bind( 'mousewheel', function (e) {
  2. var nt = $(document.body).scrollTop()-(e.deltaY*e.deltaFactor*100);
  3. e.preventDefault();
  4. e.stopPropagation();
  5. $(document.body).stop().animate( {
  6. scrollTop : nt
  7. } , 500 , 'easeInOutCubic' );
  8. } )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement