Instructions

Back to home
How to Edit Counter GSAP Animations
1. Element Map

Below are all elements using GSAP:

2. Customizing Key Variables (Counter)

You can easily control animation behavior by editing these values:

⏳ Duration
duration: 4

✍️ Example:

⏳ Delay
delay: 0.5

✍️ Adds delay before animation starts

Vertical Movement
y: 24

✍️ Controls how far the element moves during the reveal.

Stagger
stagger: 0.12

✍️ Adds a delay between multiple elements.

✨ Easing
ease: 'power2.out'

✍️ Example:

✨ Run Once
once: true
3. How to Remove Counter GSAP Animation

Follow these steps to disable the counter animation:

Step 1: Remove or Comment JS Code (Project Settings -> Footer)
<script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/gsap.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/ScrollTrigger.min.js" defer></script>

// Comment or delete this block
window.addEventListener('DOMContentLoaded', () =>   ...
);
Step 2: Publish Site