Shared Axis Z
Shared Axis Z é um componente para React e Tailwind CSS, da biblioteca SmoothUI, com licença MIT. Copia e cola no teu projeto.
SmoothUI
MIT
other
O que é
Shared Axis Z é um componente para React e Tailwind CSS, da biblioteca SmoothUI, com licença MIT. Copia e cola no teu projeto.
Como usar
Abre o componente no catálogo, carrega em copiar, e cola no teu projeto. O prompt copiado leva o código e as regras para o teu agente o reproduzir sem alterar nada.
Cinco cópias grátis por mês. Sem cartão.
Precisa de
npm i motion
Licença
Este componente vem de SmoothUI e é redistribuído sob a licença MIT, que permite uso comercial. O aviso de copyright viaja com o código.
Shared Axis Z
"use client";
import { AnimatePresence, motion, useReducedMotion } from "motion/react";
import { useEffect, useState } from "react";
export interface SharedAxisZProps {
className?: string;
/** Interval between phrase swaps in milliseconds. */
interval?: number;
phrases: string[];
}
const ENTER_EASE = [0.2, 0, 0, 1] as const;
const EXIT_EASE = [0.4, 0, 1, 1] as const;
/**
* SharedAxisZ — scale/depth phrase transition inspired by Google Material shared axis (Z).
* Incoming phrase scales up from 0.9 with a soft blur; outgoing scales to 1.06 and fades.
* From the animate-text catalog (`shared-axis-z`).
*/
export default function SharedAxisZ({
phrases,
className = "",
interval = 2500,
}: SharedAxisZProps) {
const [index, setIndex] = useState(0);
const shouldReduceMotion = useReducedMotion();
useEffect(() => {
const id = setInterval(() => {
setIndex((prev) => (prev + 1) % phrases.length);
}, interval);
return () => clearInterval(id);
}, [interval, phrases.length]);
return (
<span
aria-live="polite"
className={`relative inline-block overflow-hidden ${className}`}
>
<AnimatePresence mode="wait">
<motion.span
animate={
shouldReduceMotion
? { opacity: 1 }
: { filter: "blur(0px)", opacity: 1, scale: 1 }
}
exit={
shouldReduceMotion
? { opacity: 0, transition: { duration: 0 } }
: {
filter: "blur(1px)",
opacity: 0,
scale: 1.06,
transition: { duration: 0.36, ease: EXIT_EASE },
}
}
initial={
shouldReduceMotion
? { opacity: 1 }
: { filter: "blur(2px)", opacity: 0, scale: 0.9 }
}
key={index}
style={{ display: "inline-block" }}
transition={
shouldReduceMotion
? { duration: 0 }
: { duration: 0.52, ease: ENTER_EASE }
}
>
{phrases[index]}
</motion.span>
</AnimatePresence>
</span>
);
}