A Pen by Hasan ALDOY on CodePen.
Last active
August 14, 2025 03:08
-
-
Save aldoyh/bc4f37227bda674051ce59c9c5a6d374 to your computer and use it in GitHub Desktop.
GSAP Starter Template
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 characters
| <h1 id="heading"> | |
| مرحبًا بكم | |
| </h1> | |
| <p>This pen loads all the GSAP files<br /> Fork and enjoy!</p> |
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 characters
| gsap.registerPlugin(SplitText); | |
| gsap.set("h1", { opacity: 1 }); | |
| let split = SplitText.create("#heading", { type: "chars" }); | |
| //now animate each character into place from 20px below, fading in: | |
| gsap.from(split.chars, { | |
| y: 20, | |
| autoAlpha: 0, | |
| stagger: 0.05 | |
| }); |
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 characters
| <script src="https://unpkg.com/gsap@3/dist/gsap.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/CustomBounce.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/CustomEase.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/CustomWiggle.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/Draggable.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/DrawSVGPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/EaselPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/EasePack.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/Flip.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/GSDevTools.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/InertiaPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/MorphSVGPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/MotionPathHelper.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/MotionPathPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap/dist/Observer.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/PhysicsPropsPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/Physics2DPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/PixiPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/ScrambleTextPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/ScrollSmoother.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/ScrollToPlugin.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/ScrollTrigger.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/SplitText.min.js"></script> | |
| <script src="https://unpkg.com/gsap@3/dist/TextPlugin.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 characters
| body { | |
| font-family: Tajawal, sans-serif; | |
| background-color: #0e100f; | |
| color: #fffce1; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100vh; | |
| flex-direction: column; | |
| } | |
| p { | |
| max-width: 70ch; | |
| font-size: 1.4rem; | |
| text-align: center; | |
| line-height: 1.3; | |
| } | |
| h1 { | |
| opacity: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment