Text Cursor Loop Demo
sora-ui/demo-text-cursor-loopFreeComponent
The anime.js hero line, with the cursor flashing red only while collapsing/revealing.
Install it
npx shadcn@latest add https://ui.soralabs.io.vn/r/demo-text-cursor-loop.jsonSource
1"use client";23import { TextCursorLoop } from "@/components/sora-ui/texts/text-cursor-loop";45// Same hero line as the anime.js reference this primitive reimplements —6// "A fast and flexible JavaScript library to animate [the web]." — the7// cursor flashes the anime.js red only while collapsing/revealing, driven8// by the `data-phase` attribute the primitive exposes for exactly this.9const WORDS = [10 "the web",11 "HTML",12 "WebGL",13 "CSS",14 "Canvas 2D",15 "SVG",16 "anything",17];1819export default function TextCursorLoopExample() {20 return (21 <p className="m-0 max-w-md text-balance text-lg leading-snug">22 A fast and flexible JavaScript library to animate{" "}23 <TextCursorLoop24 className="font-medium"25 classNames={{26 cursor: "data-[phase=collapsing]:text-[#ff4b4b]",27 }}28 words={WORDS}29 />30 </p>31 );32}
What it pulls in
Other registry items
Files it writes
More from Sora UI
All 97 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | Sora UI | Components | Free | 2 deps | |
| Border Trailborder-trail | Sora UI | Components | Free | 1 dep | |
| Bottom Sheetbottom-sheet | Sora UI | Components | Free | 2 deps | |
| Cursor Bubblecursor-bubble | Sora UI | Components | Free | 2 deps | |
| Cursor Trail Revealcursor-trail-reveal | Sora UI | Components | Free | 1 dep | |
| Custom Cursorcustom-cursor | Sora UI | Components | Free | 2 deps | |
| Accordion Demodemo-accordion | Sora UI | Components | Free | no deps | |
| Border Trail Demodemo-border-trail | Sora UI | Components | Free | no deps |
