Skip to content

Instantly share code, notes, and snippets.

@matthewhudson
Created March 12, 2013 20:18
Show Gist options
  • Save matthewhudson/5146629 to your computer and use it in GitHub Desktop.
Save matthewhudson/5146629 to your computer and use it in GitHub Desktop.
Gently move <h1> downward on load.
<script type="text/javascript">
try{
Typekit.load({
active: function() {
$("h1").transition({ y: '33%' });
}
});
}
catch(e){}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment