Reel
A scrolling media strip that displays images and videos in flowing rows.
Loading...
Installation
npx shadcn@latest add @scrollxui/reel Usage
import { Reel, ReelItem } from "@/components/ui/reel";const items: ReelItem[] = [
{ id: '1', type: 'image', src: '/photo.jpg' },
{ id: '2', type: 'video', src: '/clip.mp4' },
];
<Reel items={items} />Examples
Pause On Hover
Loading...
API Reference
Reel
A scrolling media strip that displays images and videos in flowing rows.