Created
December 12, 2016 09:12
-
-
Save andreasvirkus/594ee3e5cc4d90f7065ae443eb105094 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Animate navigation for anchor links on the same page | |
* // TODO: rewrite in vanilla | |
*/ | |
jQuery('a[href^="#"]').on('click', function(event) { | |
event.preventDefault(); | |
var $href = jQuery(this).attr('href'), | |
$toScroll = jQuery($href), | |
scrollToY = $toScroll.length ? $toScroll.offset().top - 0 : 0; | |
if ($href !== '#') { | |
jQuery('html,body').animate({scrollTop: scrollToY}, 500); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment