Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. smoothScroll(1000);
  2. function smoothScroll (duration) {
  3. $('a[href^="#"]').on('click', function(event) {
  4.  
  5. var target = $( $(this).attr('href') );
  6.  
  7. if( target.length ) {
  8. event.preventDefault();
  9. $('html,body').animate({
  10. scrollTop: target.offset().top
  11. }, duration);
  12. }
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement