Variable Proximity <mv-variable-proximity>

Las letras se hinchan a lo largo de los ejes de una fuente variable (peso, ancho, cualquier eje personalizado) cuando se acerca un mouse o un lápiz, con un radio en em y una atenuación lineal, exponencial o gaussiana; las posiciones de las letras se guardan en caché en reposo para que el campo nunca tiemble, y las fuentes estáticas recurren a un efecto de escala.

CategoríaTexto animado
TipoWeb Component (<mv-variable-proximity>)
Estadoestable
Keywordssafe-rewrite, variable-font, proximity, pointer, cursor, weight, typography, pressure

When to use

  • A heading or text line should swell in weight or width as the cursor approaches
  • An editorial, typography-driven page wants a subtle pointer effect using variable font axes

Avoid when

  • A big standalone headline or 404 needs stronger effects or must also animate on touch → use Cursor Type instead
  • Long body text; letters changing weight under the pointer disturb reading

Instalación

node scripts/add.mjs variable-proximity --out ./src/marvelous

Agente de IA con el servidor MCP de Marvelous UI: install_components({ slugs: ["variable-proximity"], 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/variable-proximity/variable-proximity.js, components/variable-proximity/variable-proximity.css.

Uso

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

<div style="display:grid;gap:1.25rem;justify-items:center;text-align:center;padding:2rem 1rem;width:100%;min-height:300px;align-content:center;box-sizing:border-box;font-family:'Inter var','Segoe UI Variable Display',system-ui,sans-serif">
  <p style="margin:0;font-size:clamp(2.6rem,7vw,4.6rem);line-height:1;letter-spacing:-.02em">
    <mv-variable-proximity from="'wght' 300" to="'wght' 800" radius="2.4" falloff="gaussian">Move your cursor closer</mv-variable-proximity>
  </p>
  <p style="margin:0;font-size:1.35rem;color:var(--mv-fg-muted)">
    <mv-variable-proximity from="'wght' 350" to="'wght' 700" radius="4" style="--mv-variable-proximity-color:var(--mv-accent)">Living typography, driven by distance.</mv-variable-proximity>
  </p>
  <p style="margin:.5rem 0 0;font-size:.8rem;color:var(--mv-fg-subtle)">Font without variable axes? It automatically falls back to a scale effect.</p>
</div>

API

Attributes

NameTipoDefaultDescription
fromfont-variation-settings'wght' 400Axes at rest (e.g. "'wght' 300, 'wdth' 75"). wght → font-weight and wdth → font-stretch (also works with system variable fonts); other axes go through font-variation-settings.
tofont-variation-settings'wght' 900Axes under the cursor.
radiusnumber3Influence radius, in em (the element's font size), measured from the pointer to each letter's resting center.
fallofflinear | exponential | gaussianlinearFalloff curve over distance: linear, exponential (sharp peak, long tail) or gaussian (soft plateau under the pointer).

CSS variables

NameDefaultDescription
--mv-variable-proximity-colorColor that nearby letters tint toward (none by default).
--mv-variable-proximity-scale0.35Max scale-up in fallback mode (non-variable font).
--mv-tExposed on each letter (0 → 1) for your own styles.

Accessibility

The text is exposed once through a visually hidden copy; the split letters are aria-hidden. A decorative effect for mouse and pen, with no keyboard impact (touch leaves the text at rest). The rAF loop only runs while the pointer moves or letters settle, and is off with reduced motion. Forced colors: the tint is dropped. If the font doesn't interpolate the requested axes (static font), it automatically falls back to a scale effect.

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