Animate CSS Grid
This small (4kb minified and gzipped) script wraps a CSS grid (or really, any container element) and animates updates to its children.
When the grid container, or one of its immediate children, is updated via the addition or removal of a class, the grid will smoothly transition its children to their new positions and sizes.
Example on Codepen
How to use it
ES6 Modules:
yarn add animate-css-grid
import { wrapGrid } from animateCSSGrid
const grid = document.querySelector(".grid");
const { unwrapGrid } = wrapGrid(grid, {
stagger: true,
duration: 300
});
unwrapGrid()
Or from a script tag:
<script src="https://unpkg.com/animate-css-grid@latest"></script>
<script>
const grid = document.querySelector(".grid");
const { unwrapGrid } = animateCSSGrid.wrapGrid(grid);
</script>
How it works
The script registers a MutationObserver
that activates when the grid or one of its immediate children adds or loses a class.
It uses the FLIP animation technique to smoothly update the grid.
Requiremenets
The updates to the grid will have to come from addition or removal of a class. Currently, inline style updates will not trigger transitions.
If a grid item has children, they should be surrounded by a single container element.
OK:
<div class="some-grid-class-that-changes">
<div class="grid-item">
<div>
...child 1
...child 2
</div>
</div>
<div>
Not going to work:
<div style="[grid styles that change]">
<div class="grid-item">
...child 1
...child 2
</div>
<div>