RemotionUI
Primitives

Slide Up

Slide up with fade animation.

Primitiveatoms

Install
npx remotion-ui@latest add slide-up

Slide up with fade animation.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add slide-up

Import after install

@/remotion/primitives/slide-up
  • Use when: frame-level motion primitives and reusable animation wrappers.
  • Customize: durationInFrames, delayInFrames, distance, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

import { SlideUp } from "@/remotion/primitives/slide-up";

<SlideUp distance={80}>
  <h1>Title</h1>
</SlideUp>

API Reference

PropTypeDescription
children*ReactNodeContent to animate.
durationInFramesnumberLength of the enter animation in frames.
delayInFramesnumberFrames to wait before the animation starts.
distancenumberVertical offset in pixels at the start of the animation.

Related