Line Reveal

Lines reveal upward with a soft masked feel and compact stagger.

Preview

Open editor

Usage

Lines reveal upward with a soft masked feel and compact stagger. Drop it in as a chapter card, hero opener, or as a beat between scenes — the same headline + subtitle props power the whole text-animation family, so swapping motions takes one field change.

Props

NameTypeDefault
headlinestring"Line one Line two Line three"
subtitlestring"Lines rise together"

Composition

ID
TextMaskRevealUp
Resolution
1920×1080
FPS
60
Duration
1.7s

Source

Copy or download the React source — drop it into your own Remotion project. The only runtime dependency is remotion.

"use client";
import { AbsoluteFill, Easing, interpolate } from "remotion";
import { useDesignFrame } from "../../use-design-frame";
import { useFontReady } from "../../use-font-ready";
import {
  getSubtitleColor,
  resolveTitleStyle,
  snap,
  type TitleProps,
} from "../title-shared";

export type TextMaskRevealUpProps = TitleProps;

const APPLE_EASE = Easing.bezier(0.16, 1, 0.3, 1);
const LINE_EASE = Easing.bezier(0.22, 1, 0.36, 1);

const HEADLINE_START = 8;
const LINE_STAGGER = 5.4;
const LINE_DURATION = 46;
const MAX_BLUR_PX = 12;

export const TextMaskRevealUp: React.FC<TextMaskRevealUpProps> = ({
  headline,
  subtitle,
  clipStyle,
}) => {
  const frame = useDesignFrame();
  const s = resolveTitleStyle(clipStyle);
  useFontReady(s.fontFamily);

  const lines = headline.split("\n").filter((l) => l.trim());

  const lastLineStart = HEADLINE_START + (lines.length - 1) * LINE_STAGGER;
  const lastLineEnd = lastLineStart + LINE_DURATION;
  const headlineProgress = interpolate(
    frame,
    [HEADLINE_START, lastLineEnd],
    [0, 1],
    {
      extrapolateLeft: "clamp",
      extrapolateRight: "clamp",
      easing: APPLE_EASE,
    },
  );
  const headlineBlurPx = Math.round((1 - headlineProgress) * MAX_BLUR_PX);

  const subtitleStart = lastLineEnd + 14;
  const subtitleProgress = interpolate(
    frame,
    [subtitleStart, subtitleStart + 26],
    [0, 1],
    { extrapolateLeft: "clamp", extrapolateRight: "clamp", easing: APPLE_EASE },
  );

  return (
    <AbsoluteFill
      style={{
        background: s.background,
        color: s.color,
        fontFamily: s.fontFamily,
        display: "flex",
        flexDirection: "column",
        alignItems: "center",
        justifyContent: "center",
        padding: "0 80px",
        textAlign: "center",
      }}
    >
      <h1
        style={{
          fontSize: 96,
          fontWeight: 700,
          letterSpacing: "-0.04em",
          lineHeight: 1.2,
          margin: 0,
          display: "flex",
          flexDirection: "column",
          alignItems: "center",
          filter: headlineBlurPx > 0 ? `blur(${headlineBlurPx}px)` : undefined,
        }}
      >
        {lines.map((line, i) => {
          const lineStart = HEADLINE_START + i * LINE_STAGGER;
          const progress = interpolate(
            frame,
            [lineStart, lineStart + LINE_DURATION],
            [0, 1],
            {
              extrapolateLeft: "clamp",
              extrapolateRight: "clamp",
              easing: LINE_EASE,
            },
          );
          return (
            <span
              key={i}
              style={{
                display: "block",
                opacity: progress,
                transform: `translate3d(0, ${snap(30 * (1 - progress))}px, 0)`,
                whiteSpace: "nowrap",
              }}
            >
              {line}
            </span>
          );
        })}
      </h1>

      {subtitle.trim() && (
        <p
          style={{
            fontSize: 38,
            fontWeight: 400,
            letterSpacing: "-0.012em",
            margin: "32px 0 0",
            color: getSubtitleColor(s.color),
            opacity: subtitleProgress,
            transform: `translate3d(0, ${snap((1 - subtitleProgress) * 14)}px, 0)`,
          }}
        >
          {subtitle}
        </p>
      )}
    </AbsoluteFill>
  );
};
Save as TextMaskRevealUp/TextMaskRevealUp.tsx