Skip to content

Instantly share code, notes, and snippets.

@jordancalder
Created April 9, 2015 22:19
Show Gist options
  • Save jordancalder/86851ea160eafcc107a4 to your computer and use it in GitHub Desktop.
Save jordancalder/86851ea160eafcc107a4 to your computer and use it in GitHub Desktop.
jQuery link easing for Tiafau on his final day :' (
<script>
$(".intro-message a").on('click', function(e) {
e.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 3000, function(){
window.location.hash = hash;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment