This commit is contained in:
Andy Leong
2024-01-16 00:04:21 +08:00
parent a7c2a17cf0
commit 3fd13205c9
8 changed files with 146 additions and 80 deletions

View File

@@ -8,6 +8,11 @@ const emit = defineEmits(["IndexPage"]);
const start = (event) => {
debounceTap(event.target, () => {
emit("IndexPage", { action: "start" });
gsap.to(".IndexPage", {
duration: 0.5,
autoAlpha: 0,
onComplete: () => {},
});
});
};