Marquee Demo
loomui/marquee-demoFreeExample
A row of quote cards scrolling on a seamless loop.
Install it
npx shadcn@latest add https://loomui.design/r/marquee-demo.jsonSource
1import { Marquee } from "@/registry/loomui/marquee"23const QUOTES = [4 "Shipped it in an afternoon.",5 "Finally, motion I can hand to a designer.",6 "The off switch is why I kept it.",7 "Reads like code I would have written.",8]910export default function MarqueeDemo() {11 return (12 <div className="w-full max-w-2xl">13 <Marquee fade pauseOnHover duration={28} gap="1rem">14 {QUOTES.map((quote) => (15 <figure16 key={quote}17 className="bg-card w-64 shrink-0 rounded-xl border p-4"18 >19 <blockquote className="text-sm">{quote}</blockquote>20 </figure>21 ))}22 </Marquee>23 </div>24 )25}
What it pulls in
Other registry items
Files it writes
More from loomui
All 91 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Aurora Backdrop Demoaurora-backdrop-demo | loomui | Examples | Free | no deps | |
| Bento Grid Demobento-grid-demo | loomui | Examples | Free | no deps | |
| Card Stack Democard-stack-demo | loomui | Examples | Free | no deps | |
| Compare Slider Democompare-slider-demo | loomui | Examples | Free | no deps | |
| Confetti Button Democonfetti-button-demo | loomui | Examples | Free | no deps | |
| Count Up Democount-up-demo | loomui | Examples | Free | no deps | |
| Credit Card Democredit-card-demo | loomui | Examples | Free | no deps | |
| Drawer Demodrawer-demo | loomui | Examples | Free | no deps |
