beta

Cursor Type <mv-cursor-type>

Uma palavra grande (um 404, uma palavra-chave) cujas letras respondem a um ponteiro preciso, cada uma com sua própria mola: um peso variável que incha, um estiramento elástico a partir da linha de base, letras empurradas para o lado que se inclinam ao se mover ou uma lupa no estilo dock que afasta as vizinhas. Funciona com a tag sozinha, mantém o texto real para os leitores de tela e se move lentamente sozinha quando não há mouse.

CategoriaCursores
TipoWeb Component (<mv-cursor-type>)
Statusbeta
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

Instalação

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

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

Arquivos copiados (dependências incluídas): 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

Início rápido, a menor marcação que funciona:

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

Marcação de referência, para usar como ponto de partida e personalizar com atributos, data-* e variáveis 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 foi traduzida com IA. Informar um problema de tradução