beta
Particles — <mv-particles>
Canvas particles that drift and twinkle, pushed away or pulled in by the cursor with an elastic return; an optional constellation mode links neighbors and the pointer.
| Category | Backgrounds |
|---|---|
| Type | Web Component (<mv-particles>) |
| Status | beta |
| Keywords | particles, sparkles, constellation, interactive, hero, canvas |
When to use
- A hero should respond to the cursor with drifting particles that scatter or gather
- A network, AI or blockchain story fits a constellation of points linked to each other and the pointer
- Ambient sparkle is wanted on a light or dark surface using the theme colors
Avoid when
- Low-end mobile at high density with constellation links; a static CSS pattern is far cheaper → use Dot Pattern instead
Install
node scripts/add.mjs particles --out ./src/marvelousAI agent with the Marvelous UI MCP server: install_components({ slugs: ["particles"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).
Files copied (dependencies included): tokens/tokens.css, core/base.css, core/canvas.js, core/dom.js, core/element.js, core/motion.js, core/pointer.js, components/particles/particles.js, components/particles/particles.css.
Usage
Canonical markup — start from it and customize with attributes, data-* and CSS variables:
<div style="display:grid;grid-template-columns:1.6fr 1fr;min-height:320px">
<section style="position:relative;display:grid;place-items:center;text-align:center;overflow:hidden;padding:2rem">
<mv-particles data-fill connect></mv-particles>
<div style="position:relative">
<p style="margin:0;font:700 clamp(1.6rem,4vw,2.6rem)/1.1 var(--mv-font-sans);letter-spacing:-.03em">Everything is connected</p>
<p style="margin:.6rem auto 1.2rem;max-width:30rem;color:var(--mv-fg-muted)">A constellation that parts as your cursor passes through.</p>
<a class="mv-button" href="#particles">Build my network</a>
</div>
</section>
<section style="position:relative;display:grid;place-items:center;text-align:center;overflow:hidden;border-left:1px solid var(--mv-border);padding:1.5rem">
<mv-particles data-fill interaction="attract" color="var(--mv-accent)" density="1.4"></mv-particles>
<div style="position:relative">
<strong style="display:block;font-size:1.1rem">Attracted sparks</strong>
<span style="font-size:.85rem;color:var(--mv-fg-muted)">interaction="attract"</span>
</div>
</section>
</div>API
Attributes
| Name | Type | Default | Description |
|---|---|---|---|
count | number | Fixed count (otherwise proportional to the area, max 500 / 220 with connect). | |
density | number | 1 | Multiplies the automatic count. |
interaction | repel | attract | none | repel | Reaction to the cursor. |
radius | number | 120 | Cursor influence radius (px). |
connect | boolean | Links nearby particles (constellation), and the cursor. | |
link-distance | number | 120 | Max link distance (px). |
color | CSS color | var(--mv-particles-color) | Particle color (tokens accepted, follows the theme). |
link-color | CSS color | var(--mv-particles-link) | Link color. |
size | number | 2 | Max particle radius (px). |
speed | number | 1 | Drift speed. |
data-fill | boolean | Fills the positioned parent; the cursor is then tracked on the parent. |
CSS variables
| Name | Default | Description |
|---|---|---|
--mv-particles-color | fg 75% | Default particle color. |
--mv-particles-link | accent 70% | Default link color. |
Accessibility
Decorative canvas (aria-hidden), pointer-events: none with data-fill. Pauses off-screen and in hidden tabs. Reduced motion: a still image with no cursor reaction.