Spaces:
Sleeping
Sleeping
File size: 2,507 Bytes
4b445f6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | "use client";
import { motion, type Variants } from "framer-motion";
import type { ReactNode } from "react";
/* βββ Fade-up stagger container βββ */
const containerVariants: Variants = {
hidden: {},
show: { transition: { staggerChildren: 0.06, delayChildren: 0.1 } },
};
const itemVariants: Variants = {
hidden: { opacity: 0, y: 24, filter: "blur(4px)" },
show: {
opacity: 1,
y: 0,
filter: "blur(0px)",
transition: { duration: 0.5, ease: [0.25, 0.46, 0.45, 0.94] },
},
};
export function StaggerContainer({
children,
className,
}: {
children: ReactNode;
className?: string;
}) {
return (
<motion.div
variants={containerVariants}
initial="hidden"
animate="show"
className={className}
>
{children}
</motion.div>
);
}
export function StaggerItem({
children,
className,
}: {
children: ReactNode;
className?: string;
}) {
return (
<motion.div variants={itemVariants} className={className}>
{children}
</motion.div>
);
}
/* βββ Fade in (standalone) βββ */
export function FadeIn({
children,
className,
delay = 0,
direction = "up",
}: {
children: ReactNode;
className?: string;
delay?: number;
direction?: "up" | "down" | "left" | "right" | "none";
}) {
const offsets = {
up: { y: 30 },
down: { y: -30 },
left: { x: 30 },
right: { x: -30 },
none: {},
};
return (
<motion.div
initial={{ opacity: 0, filter: "blur(4px)", ...offsets[direction] }}
animate={{ opacity: 1, filter: "blur(0px)", x: 0, y: 0 }}
transition={{
duration: 0.6,
delay,
ease: [0.25, 0.46, 0.45, 0.94],
}}
className={className}
>
{children}
</motion.div>
);
}
/* βββ Animated counter βββ */
export { AnimatedCounter } from "./AnimatedCounter";
/* βββ Hover card βββ */
export function HoverCard({
children,
className,
}: {
children: ReactNode;
className?: string;
}) {
return (
<motion.div
whileHover={{
y: -4,
transition: { duration: 0.2, ease: "easeOut" },
}}
className={className}
>
{children}
</motion.div>
);
}
/* βββ Scale on tap βββ */
export function ScaleTap({
children,
className,
}: {
children: ReactNode;
className?: string;
}) {
return (
<motion.div
whileTap={{ scale: 0.97 }}
className={className}
>
{children}
</motion.div>
);
}
|