File size: 275 Bytes
08fc97e | 1 2 3 4 5 6 7 8 | // Lightweight entrance animations for the help page.
const { gsap } = window;
gsap.from("#help-hero", { opacity: 0, y: -12, duration: 0.6, ease: "power2.out" });
gsap.from("section", {
opacity: 0, y: 16, duration: 0.5, stagger: 0.08, delay: 0.15, ease: "power2.out",
});
|