Mask Reveal Up
Mask Reveal Up is a React and Tailwind CSS component from SmoothUI, licensed MIT. Copy it and paste it into your project.
SmoothUI
MIT
other
What it is
Mask Reveal Up is a React and Tailwind CSS component from SmoothUI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from SmoothUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Mask Reveal Up
"use client";
import { motion, useInView, useReducedMotion } from "motion/react";
import { useRef } from "react";
export interface MaskRevealUpProps {
/** Text content. Use "\n" to separate lines, or pass `lines` instead. */
children?: string;
className?: string;
/** Delay before the animation starts, in milliseconds. */
delay?: number;
/** Explicit line array. Takes precedence over children. */
lines?: string[];
/** Per-line stagger, in milliseconds. */
stagger?: number;
/** Animate only once the text scrolls into view. */
triggerOnView?: boolean;
}
const DURATION_S = 0.76;
const MS = 1000;
const EASE = [0.22, 1, 0.36, 1] as const;
/**
* MaskRevealUp — per-line masked reveal with upward motion and soft blur,
* inspired by Apple section transitions. Each line rises from beneath an
* overflow-hidden mask. From the animate-text catalog (`mask-reveal-up`).
* Best for two-line and three-line headings.
*/
export default function MaskRevealUp({
children,
lines: linesProp,
className = "",
delay = 0,
stagger = 90,
triggerOnView = false,
}: MaskRevealUpProps) {
const ref = useRef<HTMLSpanElement>(null);
const inView = useInView(ref, { once: true });
const shouldReduceMotion = useReducedMotion();
const play = (!triggerOnView || inView) && !shouldReduceMotion;
const lines = linesProp ?? (children ? children.split("\n") : []);
const label = lines.join(" ");
return (
<span
aria-label={label}
className={className}
ref={ref}
style={{ display: "block" }}
>
{lines.map((line, index) => (
// biome-ignore lint/suspicious/noArrayIndexKey: lines have no stable id
<span key={index} style={{ display: "block", overflow: "hidden" }}>
<motion.span
animate={
play ? { filter: "blur(0px)", opacity: 1, y: 0 } : undefined
}
aria-hidden="true"
initial={
shouldReduceMotion
? { opacity: 1 }
: { filter: "blur(6px)", opacity: 0, y: 30 }
}
style={{ display: "block" }}
transition={
shouldReduceMotion
? { duration: 0 }
: {
delay: delay / MS + (index * stagger) / MS,
duration: DURATION_S,
ease: EASE,
}
}
>
{line}
</motion.span>
</span>
))}
</span>
);
}