fix: unblock music video ci checks

This commit is contained in:
Miao Yang
2026-06-23 22:32:51 +08:00
parent 4a8e2f1cd0
commit 5d1bff51b5
4 changed files with 31 additions and 14 deletions
+7 -4
View File
@@ -26,7 +26,6 @@
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
text-align: left;
opacity: 0;
transform: translateX(-100%); /* Start off-screen left */
}
[data-composition-id="intro"] .title {
@@ -53,11 +52,15 @@
const tl = gsap.timeline({ paused: true });
// Animation: Speaker card slides in from the left
tl.to(
tl.fromTo(
'[data-composition-id="intro"] .title-card',
{
opacity: 0,
xPercent: -120,
},
{
opacity: 1,
x: 0,
xPercent: 0,
duration: 0.8,
ease: "power2.out",
},
@@ -68,7 +71,7 @@
tl.to(
'[data-composition-id="intro"] .title-card',
{
x: "-120%",
xPercent: -120,
opacity: 0,
duration: 0.6,
ease: "power2.in",