Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
  2. if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
  3. var target = $(this.hash);
  4. target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
  5. if (target.length) {
  6. $('html, body').animate({
  7. scrollTop: (target.offset().top - 54)
  8. }, 1000, "easeInOutExpo");
  9. return false;
  10. }
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement