build69
build69  /  Components  /  Motion — Transitions & Decorative  /  blur-fade

blur-fade

v1.0.1Updated 21 Jul 2026

Lower-level MagicUI source primitive used by `AnimatedText.BlurInText` / `FadeInText` patterns. Prefer the `AnimatedText` composite from `@/components/motion/animated-text` unless you need direct access to the underlying

Preview

Live · 7 stories
DefaultOpen ↗
Why this is recommendedfadebluranimationmagicui+2

The default, out-of-the-box blur-fade.

Recommended for+14
  • Custom blur-fade reveal patterns not covered by AnimatedText
Tags+6
fadebluranimationmagicuiprimitivedefault
Features+4
  • Blur + fade entrance animation
  • In-view trigger
  • Configurable delay + duration
Not recommended for−2
  • Most product surfaces (use the build69 `AnimatedText` composite)

Install

Ask your agent, or call the MCP tool directly. The resolved bundle is written into your project.

get_registry_item({ name: "blur-fade" })

Usage

import { BlurFade } from '@/components/motion/blur-fade';

<BlurFade delay={0.2}>Welcome to build69</BlurFade>

Tick variants in the left menu — each adds a tab with that variant’s real story source, the same code the preview above renders.

Props

PropTypeRequired
delay

Delay before animation in seconds

number
duration

Animation duration in seconds

number
inView

Trigger only when scrolled into view

boolean

Related