beta

Dot Pattern — <mv-dot-pattern>

Dot pattern in pure CSS (fade, staggered) plus a living canvas version: twinkling halos with a hover glow, or a concentric wave the cursor pushes away with an elastic return.

CategoryBackgrounds
TypeWeb Component (<mv-dot-pattern>)
Statusbeta
Keywordsdots, pattern, glow, wave, interactive, hero, canvas

When to use

Avoid when

Install

node scripts/add.mjs dot-pattern --out ./src/marvelous

AI agent with the Marvelous UI MCP server: install_components({ slugs: ["dot-pattern"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).

Files copied (dependencies included): tokens/tokens.css, core/base.css, core/canvas.js, core/element.js, core/motion.js, core/pointer.js, components/dot-pattern/dot-pattern.css, components/dot-pattern/dot-pattern.js.

Usage

Canonical markup — start from it and customize with attributes, data-* and CSS variables:

<div style="display:grid;grid-template-columns:1.7fr 1fr;min-height:320px">
  <section style="position:relative;display:grid;place-items:center;text-align:center;overflow:hidden;padding:2rem">
    <mv-dot-pattern variant="wave" data-fill></mv-dot-pattern>
    <div style="position:relative">
      <p style="margin:0;font:700 clamp(1.6rem,4vw,2.5rem)/1.1 var(--mv-font-sans);letter-spacing:-.03em">A pattern that breathes</p>
      <p style="margin:.6rem auto 1.2rem;max-width:30rem;color:var(--mv-fg-muted)">Move your cursor closer, click for a shockwave.</p>
      <a class="mv-button" href="#dot-pattern">Get started for free</a>
    </div>
  </section>
  <div style="display:grid;grid-template-rows:1fr 1fr;border-left:1px solid var(--mv-border)">
    <div style="position:relative;display:grid;place-items:center;overflow:hidden">
      <mv-dot-pattern variant="glow" data-fill gap="18"></mv-dot-pattern>
      <strong style="position:relative;font-size:.9rem">Twinkle + glow</strong>
    </div>
    <div class="mv-dot-pattern" data-variant="staggered" style="display:grid;place-items:center;border-top:1px solid var(--mv-border)">
      <strong style="font-size:.9rem">CSS · staggered</strong>
    </div>
  </div>
</div>

API

Attributes

NameTypeDefaultDescription
variantglow | wave<mv-dot-pattern>: animated canvas version (no value: CSS dots).
data-variantstaggeredCSS class: staggered rows.
data-faderadial | top | bottom | edges | noneradialFade mask.
data-fillbooleanFills the positioned parent (absolute, inset 0).
gapnumber22Canvas: dot spacing in px.
sizenumber1.4Canvas: dot radius in px.
colorCSS colorvar(--mv-dot-pattern-color)Canvas: base color (tokens accepted, follows the theme).
active-colorCSS colorvar(--mv-accent)Canvas: color of the halos, wave and hover.
radiusnumber140Cursor influence radius in px.
speednumber1Speed multiplier.

CSS classes

NameDescription
mv-dot-patternCSS dot layer (no JS). data-fill fills a positioned parent.

CSS variables

NameDefaultDescription
--mv-dot-pattern-gap18pxCSS: spacing.
--mv-dot-pattern-radius1pxCSS: dot radius.
--mv-dot-pattern-colorfg 24%Dot color (CSS and canvas).
--mv-dot-pattern-x / -y0pxCSS: offset.
--mv-dot-pattern-maskCustom mask (replaces data-fade).

Accessibility

Decorative: aria-hidden, pointer-events: none with data-fill (the cursor is tracked on the parent). Reduced motion: a still image; the hover glow stays instant, with no spring or wave.