RemotionUI

Scale In

Scale in with fade animation.

PrimitivePrimitives

scale-in30fps · 960×540
Install
$ npx remotion-ui@latest add scale-in

Scale in with fade animation.

Agent notes

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

Import
@/remotion/primitives/scale-in
  • Use when: frame-level motion primitives and reusable animation wrappers.
  • Customize: durationInFrames, delayInFrames, 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 { ScaleIn } from "@/remotion/primitives/scale-in"; <ScaleIn durationInFrames={24}> <img src={staticFile("logo.png")} /> </ScaleIn>

API Reference

PropTypeDescription
children*ReactNodeContent to animate.
durationInFramesnumberLength of the enter animation in frames.
delayInFramesnumberFrames to wait before the animation starts.

Related