shimmering-text-demo
elevenlabs/shimmering-text-demoFreeExample
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/elevenlabs/ui/main/apps/www/public/r/shimmering-text-demo.jsonSource
1"use client"23import { useEffect, useState } from "react"4import { AnimatePresence, motion } from "motion/react"56import { ShimmeringText } from "@/components/ui/shimmering-text"78const phrases = [9 "Agent is thinking...",10 "Processing your request...",11 "Analyzing the data...",12 "Generating response...",13 "Almost there...",14]1516export default function TextShimmerDemo() {17 const [currentIndex, setCurrentIndex] = useState(0)1819 useEffect(() => {20 const interval = setInterval(() => {21 setCurrentIndex((prev) => (prev + 1) % phrases.length)22 }, 3000)2324 return () => clearInterval(interval)25 }, [])2627 return (28 <div className="bg-card w-full rounded-lg border p-6">29 <div className="mb-4">30 <h3 className="text-lg font-semibold">Text Shimmer Effect</h3>31 <p className="text-muted-foreground text-sm">32 Animated gradient text with automatic cycling33 </p>34 </div>3536 <div className="space-y-4">37 <div className="bg-muted/10 flex items-center justify-center rounded-lg py-8">38 <AnimatePresence mode="wait">39 <motion.div40 key={currentIndex}41 initial={{ opacity: 0, y: 10 }}42 animate={{ opacity: 1, y: 0 }}43 exit={{ opacity: 0, y: -10 }}44 transition={{ duration: 0.3 }}45 >46 <ShimmeringText text={phrases[currentIndex]} />47 </motion.div>48 </AnimatePresence>49 </div>50 </div>51 </div>52 )53}
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 50 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| audio-player-demoaudio-player-demo | shadcn/ui | Examples | Free | no deps | |
| bar-visualizer-demobar-visualizer-demo | shadcn/ui | Examples | Free | no deps | |
| conversation-bar-democonversation-bar-demo | shadcn/ui | Examples | Free | no deps | |
| conversation-democonversation-demo | shadcn/ui | Examples | Free | no deps | |
| live-waveform-demolive-waveform-demo | shadcn/ui | Examples | Free | no deps | |
| matrix-demomatrix-demo | shadcn/ui | Examples | Free | no deps | |
| message-demomessage-demo | shadcn/ui | Examples | Free | no deps | |
| mic-selector-demomic-selector-demo | shadcn/ui | Examples | Free | no deps |
