Verticle Marquee
Verticle Marquee is a React and Tailwind CSS marquee component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
marquee
What it is
Verticle Marquee is a React and Tailwind CSS marquee component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Verticle Marquee
import { Marquee } from '@/components/ui/marquee';
import { cn } from '@/lib/utils';
const reviews = [
{
name: 'Jack',
username: '@jack',
body: "I've never seen anything like this before. It's amazing. I love it.",
img: 'bg-blue-500',
},
{
name: 'Jill',
username: '@jill',
body: "I don't know what to say. I'm speechless. This is amazing.",
img: 'bg-green-500',
},
{
name: 'John',
username: '@john',
body: "I'm at a loss for words. This is amazing. I love it.",
img: 'bg-red-500',
},
];
const firstRow = reviews.slice(0, reviews.length / 2);
const secondRow = reviews.slice(reviews.length / 2);
const ReviewCard = ({
img,
name,
username,
body,
}: {
img: string;
name: string;
username: string;
body: string;
}) => {
return (
<figure
className={cn(
'relative h-40 w-36 cursor-pointer overflow-hidden rounded-xl border p-4',
// light styles
'border-neutral-950/10 bg-neutral-950/1 hover:bg-neutral-950/5',
// dark styles
'dark:border-neutral-50/10 dark:bg-neutral-50/10 dark:hover:bg-neutral-50/15'
)}
>
<div className='absolute bottom-0 left-0 right-0 top-0 bg-[radial-gradient(125%_125%_at_50%_10%,rgba(255,255,255,0)_40%,#335fee_100%)] pointer-events-none'></div>
<div className='flex flex-row items-center gap-2'>
<div className={cn('rounded-full w-8 h-8', img)}></div>
<div className='flex flex-col'>
<figcaption className='text-sm font-medium dark:text-white'>{name}</figcaption>
<p className='text-xs font-medium dark:text-white/40'>{username}</p>
</div>
</div>
<blockquote className='mt-2 text-sm'>{body}</blockquote>
</figure>
);
};
const MarqueeDemoVertical = () => {
return (
<div className='relative flex h-96 flex-row items-center justify-center overflow-hidden rounded-lg dark:bg-neutral-800 bg-neutral-50 sm:px-10 '>
<Marquee pauseOnHover vertical className='[--duration:20s]'>
{firstRow.map((review) => (
<ReviewCard key={review.username} {...review} />
))}
</Marquee>
<Marquee reverse pauseOnHover vertical className='[--duration:20s]'>
{secondRow.map((review) => (
<ReviewCard key={review.username} {...review} />
))}
</Marquee>
<svg
className='absolute top-0 left-0 z-2 w-full h-full mix-blend-overlay opacity-50'
xmlns='http://www.w3.org/2000/svg'
>
<defs>
<filter id='noise6'>
<feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' />
</filter>
</defs>
<rect width='100%' height='100%' filter='url(#noise6)' />
</svg>
<div className='pointer-events-none absolute inset-x-0 top-0 h-1/3 bg-linear-to-b from-white dark:from-neutral-900'></div>
<div className='pointer-events-none absolute inset-x-0 bottom-0 h-1/3 bg-linear-to-t from-white dark:from-neutral-900'></div>
</div>
);
};
export default MarqueeDemoVertical;
'use client';
import { cn } from '@/lib/utils';
interface MarqueeProps {
className?: string;
reverse?: boolean;
pauseOnHover?: boolean;
children?: React.ReactNode;
vertical?: boolean;
repeat?: number;
[key: string]: any;
}
export function Marquee({
className,
reverse,
pauseOnHover = false,
children,
vertical = false,
repeat = 4,
...props
}: MarqueeProps) {
return (
<div
{...props}
className={cn(
'group flex overflow-hidden p-2 [--duration:40s] [--gap:1rem] gap-(--gap)',
{
'flex-row': !vertical,
'flex-col': vertical,
},
className
)}
>
{Array(repeat)
.fill(0)
.map((_, i) => (
<div
key={i}
className={cn('flex shrink-0 justify-around gap-(--gap)', {
'animate-marquee flex-row': !vertical && !reverse,
'animate-marquee-vertical flex-col': vertical && !reverse,
'animate-marquee-reverse flex-row': !vertical && reverse,
'animate-marquee-vertical-reverse flex-col': vertical && reverse,
'group-hover:[animation-play-state:paused]': pauseOnHover,
})}
>
{children}
</div>
))}
</div>
);
}