- What types?
- Typewriter (characters appear one at a time), fade-in, bounce, glitch, wave (letters move in sequence), color cycle.
- Is it accessible?
- Animations respect prefers-reduced-motion. Screen readers announce the full text once, regardless of animation — the visual effect doesn't affect content accessibility.
- Typewriter — how does it work?
- CSS animates `width` on a container with `white-space: nowrap`. Pure CSS, no JS timing needed. Cursor blink is a separate animation on a pseudo-element.
- Will it reflow?
- Animations that grow text (scale, wave) can cause layout shift. The tool flags these and suggests containing with `line-height: 0` or fixed dimensions.