Initial commit

This commit is contained in:
wangxuming
2026-07-12 15:53:24 +08:00
commit 68d61700d5
252 changed files with 23291 additions and 0 deletions

15
web/src/motion/gsap.ts Normal file
View File

@@ -0,0 +1,15 @@
import gsap from "gsap";
import Flip from "gsap/Flip";
import { useGSAP } from "@gsap/react";
gsap.registerPlugin(useGSAP, Flip);
export const motion = {
fast: 0.16,
standard: 0.24,
emphasis: 0.3,
exit: 0.16,
shift: 10,
} as const;
export { Flip, gsap, useGSAP };