trending
Marquee
An infinite scrolling component that can be used to display text, images, or videos.
BTC
Bitcoin
$69420.69
MSTR
MicroStrategy Inc
$1372.15
GME
GameStop Corp
$23.65
APPL
Apple Inc
$208.14
BTC
Bitcoin
$69420.69
MSTR
MicroStrategy Inc
$1372.15
GME
GameStop Corp
$23.65
APPL
Apple Inc
$208.14
Installation
Install dependencies
bash
npm install tailwind-variants
Update tailwind config
Extend your theme and add the marquee animation and the keyframes.
js
animation: {
marquee: 'marquee var(--duration) linear infinite'
},
keyframes: {
marquee: {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(calc(-100% - var(--gap)))' }
}
}
Add component
Copy and paste the code into your project's component directory.