RemotionUI

Slide Left

Slide left with fade animation.

PrimitivePrimitives

slide-left30fps · 960×540
Install
$ npx remotion-ui@latest add slide-left

Slide left with fade animation.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/primitives/slide-left
  • 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

Example
import { SlideLeft } from "@/remotion/primitives/slide-left"; <SlideLeft distance={60}> <p>Slide in from the left</p> </SlideLeft>

API Reference

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

Related