Guest User

Untitled

a guest
Nov 21st, 2017
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*-------------------------------------------------*/
  2. /* = Scroll between sections
  3. /*-------------------------------------------------*/
  4. var $root = $('html, body');
  5.  
  6. $('a.anchor[href*=#]').on("click",function(event) {
  7. event.preventDefault();
  8.  
  9. var offset = -150;
  10.  
  11. $root.animate({
  12. scrollTop: $( $.attr(this, 'href') ).offset().top + offset
  13. }, 500);
  14. });
Add Comment
Please, Sign In to add comment