Animated Shiny Text
svelte-animations/animated-shiny-textFreeBlock
A shimmering text effect component that creates a moving shine animation across text.
Install it
npx shadcn@latest add https://sv-animations.vercel.app/r/animated-shiny-text.jsonSource
1<script lang="ts">2 import { cn } from "$UTILS$";3 interface Props {4 children?: import("svelte").Snippet;5 class?: string;6 shimmerWidth?: number;7 duration?: number;8 [key: string]: any;9 }1011 let {12 children,13 class: className,14 shimmerWidth = 100,15 duration = 8,16 ...restProps17 }: Props = $props();18</script>1920<span21 style="--shiny-width: {shimmerWidth}px; --duration: {duration}s"22 class={cn(23 "mx-auto max-w-md text-neutral-600/70 dark:text-neutral-400/70",24 "animate-shiny-text bg-size-[var(--shiny-width)_100%] bg-clip-text bg-position-[0_0] bg-no-repeat [transition:background-position_1s_cubic-bezier(.6,.6,0,1)_infinite]",25 "bg-linear-to-r from-transparent via-black/80 via-50% to-transparent dark:via-white/80",26 className27 )}28 {...restProps}29>30 {@render children?.()}31</span>
Files it writes
More from Svelte Animations
All 66 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Animated Beamanimated-beam | Svelte Animations | Blocks | Free | 1 dep · 6 files | |
| Animated Circular Progress Baranimated-circular-progress-bar | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Animated Gradient Textanimated-gradient-text | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Animated Grid Patternanimated-grid-pattern | Svelte Animations | Blocks | Free | 1 dep · 2 files | |
| Animated Listanimated-list | Svelte Animations | Blocks | Free | 1 dep · 2 files | |
| Animated Theme Toggleranimated-theme-toggler | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Arc Timelinearc-timeline | Svelte Animations | Blocks | Free | no deps · 3 files | |
| Aurora Textaurora-text | Svelte Animations | Blocks | Free | no deps · 2 files |
