Created
June 10, 2015 20:35
-
-
Save benjino/d3089e5e8d6999686342 to your computer and use it in GitHub Desktop.
gpRLEo
This file contains 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
<h1 id="introone">first intro bit of text</h1> | |
<h1 id="introtwo">second intro bit of text</h1> |
This file contains 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
jQuery(document).ready(function($) { | |
window.onload = function() { | |
var introone = document.getElementById("introone"), | |
introtwo = document.getElementById("introtwo"); | |
TweenMax.staggerFrom([introone, introtwo], 2, { | |
delay: 1, | |
scale: 0.5, | |
autoAlpha: 0 | |
}, 2); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment