Word Rotate <mv-word-rotate>

Rotierendes Wort im Fließtext für Hero-Sätze (Slide, 3D-Flip, Blur oder Fade, Buchstabe für Buchstabe), dessen Breite gleitet, damit der Satz nie springt. Von Haus aus barrierefrei: Screenreader hören einen einzigen stabilen Satz mit allen Optionen, es hält bei Hover und beim Fokus auf einem umschließenden Link an, pausiert außerhalb des Bildschirms und in verborgenen Tabs und bleibt bei reduzierter Bewegung auf einem Wort.

KategorieAnimierter Text
TypWeb Component (<mv-word-rotate>)
Statusstabil
Keywordsrotating-text, flip-words, text-loop, hero, headline, inline, layout-animation, accessible

When to use

  • A hero headline should cycle one inline word, like Build for designers, developers or teams
  • The rotating word should sit in a tinted pill whose width animates between words
  • A sold or public page needs a rotating word that screen readers hear once, not on every change
  • The word loop must be driven from script with next, previous or an index

Avoid when

  • A standalone word should melt into the next with a gooey blur → use Morphing Text instead
  • Whole phrases should be typed and deleted letter by letter → use Typewriter instead

Installation

node scripts/add.mjs word-rotate --out ./src/marvelous

KI-Agent mit dem MCP-Server von Marvelous UI: install_components({ slugs: ["word-rotate"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).

Kopierte Dateien (inklusive Abhängigkeiten): tokens/tokens.css, core/base.css, core/dom.js, core/element.js, core/motion.js, core/observe.js, components/word-rotate/word-rotate.js, components/word-rotate/word-rotate.css.

Verwendung

Schnellstart mit dem kleinsten funktionierenden Markup:

<p>Build for <mv-word-rotate words="designers, developers, teams"></mv-word-rotate></p>

Referenz-Markup zum Starten und Anpassen mit Attributen, data-* und CSS-Variablen:

<div style="display:grid;gap:2rem;width:min(100%,46rem);margin-inline:auto;text-align:center">
  <h2 style="margin:0;font:700 clamp(1.9rem,4.6vw,3.2rem)/1.15 var(--mv-font-display);letter-spacing:-.035em">
    Build for
    <mv-word-rotate data-variant="pill" words="designers, developers, teams" style="--mv-word-rotate-color:var(--mv-accent-fg)"></mv-word-rotate>
    <br>without the all-nighters.
  </h2>

  <div style="display:grid;gap:.9rem;font-size:clamp(1.1rem,2.4vw,1.45rem);font-weight:600;letter-spacing:-.02em">
    <p style="margin:0">Interfaces that feel <mv-word-rotate effect="flip" interval="2200" words="fast, reliable, elegant, accessible" colors="var(--mv-accent), var(--mv-info), var(--mv-success), var(--mv-warning)"></mv-word-rotate></p>
    <p style="margin:0">From prototype to <mv-word-rotate effect="blur" interval="2400" conjunction="and" words="production, launch, growth" style="--mv-word-rotate-color:var(--mv-accent)"></mv-word-rotate></p>
    <p style="margin:0;color:var(--mv-fg-muted)">Ships as <mv-word-rotate effect="slide" direction="down" interval="1800" words="HTML, React, Vue, Svelte, Astro" style="--mv-word-rotate-color:var(--mv-fg);font-family:var(--mv-font-mono)"></mv-word-rotate>, zero friction.</p>
    <p style="margin:0;color:var(--mv-fg-muted)">Looks <mv-word-rotate effect="fade" interval="2000" words="crisp, smooth, clean" style="--mv-word-rotate-color:var(--mv-fg)"></mv-word-rotate> by default.</p>
  </div>

  <p style="margin:0;font-size:.85rem;color:var(--mv-fg-muted)">Hover a word to hold it. Screen readers hear each sentence once, with every option.</p>
</div>

API

Attributes

NameTypDefaultDescription
wordsstringWords separated by commas (or |). Otherwise: one child per word.
effectslide | flip | blur | fadeslideTransition between two words; letters enter one after another.
intervalnumber (ms)2600How long each word is shown.
durationnumber (ms)560 (680 for flip)Duration of the transition and of the width glide.
staggernumber (ms)18-30 (0 for fade)Delay between letters.
easingCSS easingvar(--mv-ease-out)Letter easing curve (tokens accepted).
directionup | downupSlide / flip direction.
colorslist of CSS colorsOne color per word, cycled.
conjunctionor | and | noneorHow the screen reader sentence joins the words: “designers, developers, or teams”. Uses the page language (lang).
labelstringReplaces the screen reader sentence entirely.
pausedbooleanPauses the rotation. It also holds by itself on hover, on focus of a wrapping link or button, off-screen and in hidden tabs.
data-variantpillTinted pill whose width animates.
data-heldbooleanSet by the component while hover or focus holds the word (for styling).

Properties

NameTypDescription
indexnumberCurrent word (settable, wraps around; assignable before the element is defined).

Methods

NameDescription
next()Next word.
previous()Previous word.

Events

NameDescription
mv-changeNew word shown (detail.index, detail.word).

CSS variables

NameDefaultDescription
--mv-word-rotate-colorinheritWord color.
--mv-word-rotate-durationDefault duration.
--mv-word-rotate-staggerDefault stagger.
--mv-word-rotate-easingLetter easing curve.
--mv-word-rotate-width-easingvar(--mv-ease-emphasized)Width glide easing curve.
--mv-word-rotate-radius0.3emPill corner radius.

Accessibility

The animated word is aria-hidden; a visually hidden sentence lists every option once (“designers, developers, or teams”, built with Intl.ListFormat in the page language), so screen readers never hear a change. There is no live region. The rotation holds while the pointer is on the word or while focus is inside a wrapping link or button, pauses off-screen and in hidden tabs, and under reduced motion shows one static word with no width animation. The pill keeps a visible outline in forced colors.

Diese Seite wurde mit KI übersetzt. Übersetzungsfehler melden