RemotionUI

Dynamic Grid

Subtle drifting dot and line grid background.

PrimitivePrimitivesAdvanced

dynamic-grid30fps · 960×540
Install
$ npx remotion-ui@latest add dynamic-grid

Layer a slow-moving dot grid and faint line grid for depth behind scene content.

Agent notes

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

Import
@/remotion/primitives/dynamic-grid
  • Use when: frame-level motion primitives and reusable animation wrappers.
  • Customize: spacing, lineColor, sweepColor, speed, 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 { DynamicGrid } from "@/remotion/primitives/dynamic-grid"; <DynamicGrid spacing={64} />

API Reference

PropTypeDescription
spacingnumberGrid cell size in px.
lineColorstringGrid line color.
sweepColorstringDiagonal light-sweep color.
speednumberGrid drift speed in px per frame.
sweepDurationInFramesnumberFrames for one full sweep loop.

Related