Use callback

This commit is contained in:
Astrian Zheng 2023-10-13 14:16:58 +11:00
parent 3e4afef37e
commit cf1d0f5675
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -48,18 +48,21 @@ export default function Home() {
filter: "blur(10px)", filter: "blur(10px)",
duration: 0.2, duration: 0.2,
ease: "in", ease: "in",
onComplete: () => {
setHitokoto(data.hitokoto);
setFromWho(data.from_who);
setFrom(data.from);
timeline.to(motto.current, {
opacity: 1,
filter: "blur(0px)",
duration: 0.2,
ease: "out",
})
}
}); });
setHitokoto(data.hitokoto);
setFromWho(data.from_who);
setFrom(data.from);
timeline.to(motto.current, {
opacity: 1,
filter: "blur(0px)",
duration: 0.2,
ease: "out",
})
} else { } else {
console.log("not updated") console.log("not updated")
} }