From 995e9366188d49431aba3dae69a644923c614439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=9D=AC=EC=9B=90?= Date: Fri, 26 Jun 2026 13:14:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=95=A0=EB=8B=88=EB=A9=94=EC=9D=B4?= =?UTF-8?q?=EC=85=98=20=ED=83=80=EC=9D=B4=EB=B0=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/js/introAnimation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/introAnimation.js b/src/js/introAnimation.js index 90de9fe..fa37f35 100644 --- a/src/js/introAnimation.js +++ b/src/js/introAnimation.js @@ -6,6 +6,6 @@ export function initIntroAnimation() { // 텍스트 순차 등장 gsap.set([".intro__sub", ".intro__title"], { opacity: 0, y: 30 }); - gsap.to(".intro__sub", { opacity: 1, y: 0, duration: 0.9, ease: "power3.out", delay: 1.0 }); - gsap.to(".intro__title", { opacity: 1, y: 0, duration: 0.9, ease: "power3.out", delay: 1.3 }); + gsap.to(".intro__sub", { opacity: 1, y: 0, duration: 0.9, ease: "power3.out", delay: 0.3 }); + gsap.to(".intro__title", { opacity: 1, y: 0, duration: 0.9, ease: "power3.out", delay: 0.5 }); }