BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/remotionui/grid-pixelate-wipe
This component no longer exists. It was in remotionui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-11 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

grid-pixelate-wipe

remotionui/grid-pixelate-wipe
RemovedComponent

Reveal where the next scene arrives one grid cell at a time

Live preview

live · rendered by the registry
Rendered by remotionui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://remotionui.com/r/grid-pixelate-wipe.json

Source

registry/bases/default/primitives/grid-pixelate-wipe.tsxremotionui.com/r/grid-pixelate-wipe.json
1import type { TransitionPresentation } from "@remotion/transitions";
2import { useMemo } from "react";
3import { AbsoluteFill, Easing, interpolate } from "remotion";
4import {
5 resolveTransitionTiming,
6 transitionPhase,
7 type TransitionVariant,
8} from "@/remotion/lib/transition-timing";
9
10export type GridPixelateOrder =
11 | "from-left"
12 | "from-top"
13 | "diagonal"
14 | "center";
15
16export type GridPixelateShape = "square" | "dot";
17
18export type GridPixelateWipeProps = {
19 cols?: number;
20 rows?: number;
21 /** Which corner or axis the cells light up from. */
22 order?: GridPixelateOrder;
23 shape?: GridPixelateShape;
24 /** 0 pops every cell together; 1 spreads them across the whole window. */
25 stagger?: number;
26};
27
28function cellRank(
29 order: GridPixelateOrder,
30 col: number,
31 row: number,
32 cols: number,
33 rows: number,
34): number {
35 const u = cols <= 1 ? 0 : col / (cols - 1);
36 const v = rows <= 1 ? 0 : row / (rows - 1);
37
38 switch (order) {
39 case "from-left":
40 return u;
41 case "from-top":
42 return v;
43 case "diagonal":
44 return (u + v) / 2;
45 case "center":
46 return Math.min(1, Math.hypot(u - 0.5, v - 0.5) / 0.7071);
47 }
48}
49
50function cellOpacity(
51 progress: number,
52 rank: number,
53 stagger: number,
54): number {
55 const revealAt = rank * stagger;
56 const span = Math.max(1 - stagger, 0.001);
57 const raw = Math.min(1, Math.max(0, (progress - revealAt) / span));
58
59 return interpolate(raw, [0, 1], [0, 1], {
60 easing: Easing.out(Easing.cubic),
61 extrapolateLeft: "clamp",
62 extrapolateRight: "clamp",
63 });
64}
65
66function buildGridMask(
67 progress: number,
68 cols: number,
69 rows: number,
70 order: GridPixelateOrder,
71 shape: GridPixelateShape,
72 stagger: number,
73): string {
74 const cellW = 100 / cols;
75 const cellH = 100 / rows;
76 const cells: string[] = [];
77
78 for (let row = 0; row < rows; row++) {
79 for (let col = 0; col < cols; col++) {
80 const opacity = cellOpacity(
81 progress,
82 cellRank(order, col, row, cols, rows),
83 stagger,
84 );
85
86 if (opacity < 0.004) {
87 continue;
88 }
89
90 const alpha = opacity.toFixed(3);
91
92 if (shape === "dot") {
93 // The dot grows with its own reveal, so the frame fills in as a field
94 // of expanding points rather than a grid of fading squares.
95 const r = (Math.min(cellW, cellH) / 2) * opacity;
96 cells.push(
97// … truncated

Facts

Registry
remotionui
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-07
Last confirmed
8 days ago

Go to the source

Docs on remotionui remotionui.com riaz37/remotion-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex