Getting Started
Components
Special Effects
Animations
Text Animations
Backgrounds
A component for creating animated lists with smooth transitions between items.
motion-sv
Installation
pnpm dlx shadcn-svelte@latest add https://sv-animations.vercel.app/r/animated-list.json
Install dependencies
Install the required packages for this component:
pnpm add motion-sv
Copy the Source Code
Copy and paste the following code into your project:
animated-list.svelte
index.ts
Folder Structure
Folder Structure
Props
A component for .
| Name | Type | Default | Description |
|---|---|---|---|
class | string | "" | Additional CSS classes to apply |
delay | number | 0 | Delay in milliseconds before the animation starts |
items | T[] | [] | An array of items to be rendered in the animated list |
children | Snippet<[T, number]> | | A render prop function that receives each item and its index, returning a Svelte component or HTML to be rendered for that item. |