Guest User

Untitled

a guest
Jan 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. jQuery(function( $ ){
  2.  
  3. // Smooth scrolling when clicking on a hash link
  4. $('a[href^="#"]').on('click',function (e) {
  5. e.preventDefault();
  6.  
  7. var target = this.hash;
  8. var $target = $(target);
  9.  
  10. $('html, body').stop().animate({
  11. 'scrollTop': $target.offset().top-100
  12. }, 900, 'swing');
  13. }); });
Add Comment
Please, Sign In to add comment