This component is created on top of the Mantine library.
Mantine Marquee is a versatile React component for the Mantine ecosystem that renders continuous, seamless scrolling of any child elements—cards, boxes, text, or avatars—either horizontally or vertically. It exposes ergonomic props to control behavior and presentation: reverse toggles direction, vertical switches axis, fadeEdges adds gradient masking with configurable size and color, pauseOnHover halts motion on interaction, and duration/gap/repeat fine‑tune speed, spacing, and loop continuity.
The component fits neatly into layouts with explicit width/height and Mantine spacing props, and ships with dedicated stylesheets, including an optional @layer import for clean, scoped CSS integration. Example demos show simple colored boxes, mirrored horizontal tracks, stacked vertical tracks, and testimonial cards with avatars and ratings—all demonstrating how arbitrary React content can be animated into a polished marquee without custom animation code.
npm install @gfazioli/mantine-marqueeor
yarn add @gfazioli/mantine-marqueeAfter installation import package styles at the root of your application:
import '@gfazioli/mantine-marquee/styles.css';import { Marquee } from '@gfazioli/mantine-marquee';
function Demo() {
function BoxComponent({ children, ...props }: { children: ReactNode; [key: string]: any }) {
return (
<Box {...props} p="md" w="200px" c="white" style={{ borderRadius: '8px' }}>
{children}
</Box>
);
}
return (
<Marquee {...props} w={560} h={300}>
<BoxComponent bg="red">Hello World #1</BoxComponent>
<BoxComponent bg="cyan">Hope you like it #2</BoxComponent>
<BoxComponent bg="blue">Have a nice day #3</BoxComponent>
<BoxComponent bg="lime">Goodbye #4</BoxComponent>
</Marquee>
);
}Your support helps me:
- Keep the project actively maintained with timely bug fixes and security updates
- Add new features, improve performance, and refine the developer experience
- Expand test coverage and documentation for smoother adoption
- Ensure long‑term sustainability without relying on ad hoc free time
- Prioritize community requests and roadmap items that matter most
Open source thrives when those who benefit can give back—even a small monthly contribution makes a real difference. Sponsorships help cover maintenance time, infrastructure, and the countless invisible tasks that keep a project healthy.
Your help truly matters.