beta

Cursor Type <mv-cursor-type>

Una palabra grande (un 404, una palabra clave) cuyas letras responden a un puntero preciso, cada una con su propio resorte: un peso variable que se hincha, un estiramiento elástico desde la línea de base, letras apartadas que se inclinan al moverse o una lupa estilo dock que separa a sus vecinas. Funciona con la etiqueta sola, conserva el texto real para los lectores de pantalla y se mueve lentamente por sí sola cuando no hay mouse.

CategoríaCursores
TipoWeb Component (<mv-cursor-type>)
Estadobeta
Keywordscursor, typography, 404, variable-font, weight, elastic, scatter, magnify, dock, spring, headline, accessible

When to use

  • A 404 page or error screen needs one big headline that reacts letter by letter to the mouse
  • A launch or showcase title should swell, stretch, scatter or magnify under the cursor without extra setup
  • The headline should still feel alive on phones and tablets through a slow automatic drift

Avoid when

  • Inline text or a subtle weight shift near the pointer is enough → use Variable Proximity instead
  • Body copy or multi-line text; the effect is designed for one large headline

Instalación

node scripts/add.mjs cursor-type --out ./src/marvelous

Agente de IA con el servidor MCP de Marvelous UI: install_components({ slugs: ["cursor-type"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).

Archivos copiados (dependencias incluidas): tokens/tokens.css, core/base.css, core/dom.js, core/element.js, core/motion.js, core/observe.js, components/cursor-type/cursor-type.js, components/cursor-type/cursor-type.css.

Uso

Inicio rápido, el marcado mínimo que funciona:

<mv-cursor-type>404</mv-cursor-type>

Marcado de referencia: parte de él y personalízalo con atributos, data-* y variables CSS:

<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(19rem,1fr));gap:1rem;width:100%;max-width:52rem;font-family:'Inter var','Segoe UI Variable Display','Segoe UI Variable',system-ui,sans-serif">
  <section style="position:relative;display:grid;place-items:center;min-height:14rem;padding:1.5rem;overflow:hidden;border:1px solid var(--mv-border);border-radius:var(--mv-radius-xl);background:var(--mv-surface)">
    <mv-cursor-type variant="weight" radius="120" style="font-size:clamp(5rem,12vw,7.5rem);letter-spacing:-.04em">404</mv-cursor-type>
    <small style="position:absolute;left:1.125rem;bottom:.875rem;color:var(--mv-fg-subtle)">weight: variable weight</small>
  </section>
  <section style="position:relative;display:grid;place-items:center;min-height:14rem;padding:1.5rem;overflow:hidden;border:1px solid var(--mv-border);border-radius:var(--mv-radius-xl);background:var(--mv-surface)">
    <mv-cursor-type variant="stretch" style="font-size:clamp(4rem,9vw,5.5rem);font-weight:800;letter-spacing:-.03em">Oops</mv-cursor-type>
    <small style="position:absolute;left:1.125rem;bottom:.875rem;color:var(--mv-fg-subtle)">stretch: elastic letters</small>
  </section>
  <section style="position:relative;display:grid;place-items:center;min-height:14rem;padding:1.5rem;overflow:hidden;border:1px solid var(--mv-border);border-radius:var(--mv-radius-xl);background:var(--mv-bg-emphasis)">
    <mv-cursor-type variant="scatter" radius="140" style="font-size:clamp(3.5rem,8vw,4.75rem);font-weight:700;letter-spacing:-.03em">Lost?</mv-cursor-type>
    <small style="position:absolute;left:1.125rem;bottom:.875rem;color:var(--mv-fg-muted)">scatter: letters scatter</small>
  </section>
  <section style="position:relative;display:grid;place-items:center;min-height:14rem;padding:1.5rem;overflow:hidden;border:1px solid var(--mv-border);border-radius:var(--mv-radius-xl);background:var(--mv-surface)">
    <mv-cursor-type variant="magnify" radius="120" style="font-size:clamp(2.75rem,6vw,3.5rem);font-weight:650;letter-spacing:-.02em;color:var(--mv-accent-fg)">Nowhere</mv-cursor-type>
    <small style="position:absolute;left:1.125rem;bottom:.875rem;color:var(--mv-fg-subtle)">magnify: dock-style magnifier</small>
  </section>
</div>

API

Attributes

NameTipoDefaultDescription
variantweight | stretch | scatter | magnifyweightWhat the letters do near the cursor: swell in weight, stretch tall, scatter away or magnify like a dock.
radiusnumber180Cursor influence radius (px).
strengthnumber1Strength (0 to 3).
min-weight / max-weightnumber200 / 900weight: weight at rest and under the cursor. A font without a weight axis ⇒ falls back to scaling.
idleauto | always | offautoSlow virtual cursor: auto where there is no fine hover pointer (touch, pen-only), always = even with a mouse, off = never. Off under reduced motion.

CSS classes

NameDescription
mv-cursor-type-stage / -char / -glyphGenerated parts (position on -char, scale / weight on -glyph).

CSS variables

NameDefaultDescription
--mv-cursor-type-rest-weight200weight: weight before the script initializes.

Accessibility

The word is exposed once through a visually hidden copy of the real text; the animated letters are an aria-hidden duplicate and ignore pointer events. Nothing needs to be operated, so there is nothing to reach by keyboard. Pointer reactions only run under (hover: hover) and (pointer: fine), touch events are ignored, and the system cursor is never hidden or replaced. The pointer is read on the parent, so the field reaches past the word. Reduced motion: letters follow the pointer one to one with no spring lag or overshoot, and the idle drift is off. Colors come from the host text, so forced colors apply unchanged. The frame loop sleeps at rest and pauses off screen.

Esta página se tradujo con IA. Informar de un problema de traducción