-
-
Save xyztlp/6281ef98d1a9ab1ce78e07dead913f47 to your computer and use it in GitHub Desktop.
Revisions
-
CodeMyUI created this gist
Oct 24, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #demo span.color-1 H span.color-2 e span.color-3 l span.color-4 l span.color-1 o span.color-2   span.color-2 Y span.color-3 o span.color-4 u span.color-1 ! 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ var letters = $('#demo span'); TweenMax.staggerFrom( letters, 0.25, { opacity:0, y: 200, ease: Back.easeOut }, 0.08 ); 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script> 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ Stagger Text Animation - GSAP ----------------------------- A silly little animation inspired by the awesome nuageapp.com website. A [Pen](http://codepen.io/simonswiss/pen/dpQmdy) by [Simon Vrachliotis](http://codepen.io/simonswiss) on [CodePen](http://codepen.io/). [License](http://codepen.io/simonswiss/pen/dpQmdy/license). 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ @import url('https://fonts.googleapis.com/css?family=Bungee+Inline') body font-family 'Bungee Inline', sans-serif #demo display flex justify-content center align-items center position absolute top 0 left 0 height 100% width 100% span font-size 10vw font-weight 400 .color-1 { color: tomato } .color-2 { color: #bada55 } .color-3 { color: deeppink } .color-4 { color: #0099aa }