View all expressions
Motion

Auto Grid Layout Expression After Effects

Automatically arranges shape/text layers in a responsive grid using a control layer with a "Columns" slider. Includes scale auto-fit.

Contributed by:


// For Position
var control = thisComp.layer("Controller");
var numCols = Math.floor(control.effect("Columns")("Slider"));
var tileIndex = index - control.index - 1;
var col = tileIndex % numCols;
var row = Math.floor(tileIndex / numCols);
var colW = thisComp.width / numCols;
var firstTile = thisComp.layer(control.index + 1);
var rowH = firstTile.height / firstTile.width * colW;
var x = colW * (col + 0.5);
var y = rowH * (row + 0.5);
[x, y];
// For Scale
var control = thisComp.layer("Controller");
var numCols = Math.floor(control.effect("Columns")("Slider"));
var colW = thisComp.width / numCols;
var scale = colW / width * 100;
[scale, scale];

Auto Grid Layout Expression After Effects

Practical use case

Useful for building tiled image galleries, infographic layouts, or grid-based animations.

Check out similar expressions

Data-driven video workflows for After Effects are easier with Plainly.

a mesh of elegant lines transparent image