Created
January 5, 2016 12:51
-
-
Save ErikBernskiold/e6fc417796c2b5fb5328 to your computer and use it in GitHub Desktop.
Smooth scrolling animation for anchor links.
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
/** | |
* Scroll on Anchor Link Click | |
*/ | |
jQuery(function() { | |
jQuery('a[href*=#]').on('click', function(event){ | |
event.preventDefault(); | |
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment