Components
Loading preview...
A 3D perspective marquee that displays a grid of images with continuous scrolling animation.
@Shatlyk1011
npx shadcn@latest add https://21st.dev/r/Shatlyk1011/3d-marqueeimport ThreeDMarquee from "../components/ui/3d-marquee";
const imgs = Array.from({length:24}, (_,i) => `https://picsum.photos/seed/${i+1}/400/300`);
export default function Demo() {
return (
<div className="min-h-screen bg-background flex items-center justify-center">
<ThreeDMarquee images={imgs} />
</div>
);
}