kalponikoronno

smooth scroll js code

Feb 19th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. ( function( $ ) {
  3.  
  4. $("nav a").click(function() {
  5.     var link = $(this).attr('href');
  6.     $('html, body').animate({
  7.         scrollTop: $(link).offset().top
  8.     }, 1000);
  9. });
  10.  
  11. } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment