Created
January 12, 2022 08:20
-
-
Save chrisle/df741e36eeaf27fb5b6b1eb61afa68b1 to your computer and use it in GitHub Desktop.
Revisions
-
chrisle created this gist
Jan 12, 2022 .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,9 @@ <section class="container"> <h1> <span class="title">This is</span> <span class="title">a long</span> <span class="title">long title</span> </h1> <div class="button">restart</div> </section> 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,26 @@ $(document).ready(function() { $(".title").lettering(); $(".button").lettering(); }); $(document).ready(function() { animation(); }, 1000); $('.button').click(function() { animation(); }); function animation() { var title1 = new TimelineMax(); title1.to(".button", 0, {visibility: 'hidden', opacity: 0}) title1.staggerFromTo(".title span", 0.5, {ease: Back.easeOut.config(1.7), opacity: 0, bottom: -80}, {ease: Back.easeOut.config(1.7), opacity: 1, bottom: 0}, 0.05); title1.to(".button", 0.2, {visibility: 'visible' ,opacity: 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,3 @@ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lettering.js/0.7.0/jquery.lettering.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,84 @@ @import url(https://fonts.googleapis.com/css?family=Fjalla+One); $background: linear-gradient(to bottom, #405166 0%,#656f6f 100%); $red: #e55643 ; $green: #2b9f5e; $yellow: #f1c83c; $shadow: #533d4a; html{ height: 100%; } body{ font-family: 'Fjalla One', sans-serif; background: $background; } .container{ transform: translate(-50%, -50%); top: 50%; left: 50%; display: block; position: absolute; max-width: 225px; } .button{ float: left; position: relative; bottom: -65px; left: 50%; transform: translateX(-50%) rotate(-10deg); color: $red; text-transform: uppercase; opacity: 0; visibility: hidden; cursor: pointer; span{ transform: skew(-10deg); display: block; float: left; text-shadow: $shadow 1px 1px, $shadow 2px 2px, $shadow 3px 3px, $shadow 4px 4px; } } h1{ color: #fff; text-transform: uppercase; font-size: 42px; margin: 0; line-height: 47px; letter-spacing: 2px; } .title{ transform: translateX(-50%) rotate(-10deg); display: block; float: left; left: 50%; position: relative; span { transform: skew(-10deg); display: block; float: left; text-shadow: $shadow 1px 1px, $shadow 2px 2px, $shadow 3px 3px, $shadow 4px 4px, $shadow 5px 5px, $shadow 6px 6px; min-width: 10px; min-height: 10px; position: relative; } } .title{ &:nth-child(1){ color: $red; } &:nth-child(2){ color: $green; } &:nth-child(3){ color: $yellow; } } 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 @@ Title Text Animation -------------------- Title Text Animation with GSAP, TimelineMax A [Pen](https://codepen.io/RobinTreur/pen/pyWLeB) by [Robin Treur](https://codepen.io/RobinTreur) on [CodePen](https://codepen.io). [License](https://codepen.io/RobinTreur/pen/pyWLeB/license).