Guest User

Untitled

a guest
Aug 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Smooth Scrolling with Sticky Menu
  2. $('a').click(function(e) {
  3. var target = $(this).attr('href');
  4. e.preventDefault();
  5.  
  6. $('html,body').animate({
  7. scrollTop: $(target).offset().top
  8. }, 800, 'easeInOutCirc');
  9. });
  10.  
  11. $('html').animate({ // $(document.documentElement) works too
  12. scrollTop: Math.max($(target).offset().top - $('#your-header').outerHeight(), 0)
  13. }, 800, 'easeInOutCirc');
Add Comment
Please, Sign In to add comment