项目作者: aholachek

项目描述 :
Painless transitions for CSS Grid
高级语言: TypeScript
项目地址: git://github.com/aholachek/animate-css-grid.git
创建时间: 2018-03-16T02:31:07Z
项目社区:https://github.com/aholachek/animate-css-grid

开源协议:

下载


Animate CSS Grid

Performantly animate all CSS grid properties, including:

grid-column and grid-row


grid-column and grid-row

grid-template-columns


grid-template-columns

grid-gap


grid-gap

Fork Photo Grid Example on CodeSandbox

Why use animate-css-grid?

This library uses transforms to transition between different layout states, which means, in comparison to pure CSS animations, it offers:

  • better performance
  • more flexibility in terms of what properties can be animated
  • more configurable animations (easing options, staggers)

Want to have a look for yourself? Feel free to check out this Mondrian animated with CSS keyframes and compare it with the same UI animated with animate-css-grid.

How to use it

Just call the wrapGrid method on your grid container, and optionally provide a config object as a second argument.
If the grid is removed from the page, the animations will automatically be cleaned up as well.

yarn add animate-css-grid or npm install animate-css-grid

  1. import { wrapGrid } from 'animate-css-grid'
  2. const grid = document.querySelector(".grid");
  3. wrapGrid(grid);

Or from a script tag:

  1. <script src="https://unpkg.com/animate-css-grid@latest"></script>
  2. <script>
  3. const grid = document.querySelector(".grid");
  4. animateCSSGrid.wrapGrid(grid, {duration : 600});
  5. </script>

Optional config object:

  1. {
  2. // int: default is 0 ms
  3. stagger: 100,
  4. // int: default is 250 ms
  5. duration: 500,
  6. // string: default is 'easeInOut'
  7. easing: 'backInOut',
  8. // function: called with list of elements about to animate
  9. onStart: (animatingElementList)=> {},
  10. // function: called with list of elements that just finished animating
  11. // cancelled animations will not trigger onEnd
  12. onEnd: (animatingElementList)=> {}
  13. }

Available easing functions:

  • 'linear'
  • 'easeIn' / 'easeOut' / 'easeInOut'
  • 'circIn' / 'circOut' / 'circInOut'
  • 'backIn' / 'backOut' / 'backInOut'
  • 'anticipate'

Learn more about available easing functions here.

Two functions are returned by the wrapGrid call that you probably won’t need to use:

  1. import { wrapGrid } from animateCSSGrid
  2. const grid = document.querySelector(".grid");
  3. const { unwrapGrid, forceGridAnimation } = wrapGrid(grid);
  4. // if you want the grid to transition after updating an inline style
  5. // you need to call forceGridAnimation
  6. grid.style.width = '500px'
  7. forceGridAnimation()
  8. // if you want to remove animations but not the grid itself
  9. unwrapGrid()

Requirements

  1. The updates to the grid will have to come from addition or removal of a class or element. Currently, inline style updates will not trigger transitions. (Although you can manually trigger transitions in that case by calling forceGridAnimation())
  2. Important If a grid item has children, they should be surrounded by a single container element. This is so we can apply a counter scale and prevent children elements from getting warped during scale transitions of the parent.

Example:

  1. <!-- grid class -->
  2. <ul class="some-grid-class-that-changes">
  3. <li class="grid-item">
  4. <!-- each grid item must have a single direct child -->
  5. <div>
  6. <h3>Item title</h3>
  7. <div>Item body</div>
  8. </div>
  9. </li>
  10. <div>

How it works

The script registers a MutationObserver that activates when the grid or one of its children adds or loses a class or element. That means there’s no need to remove the animations before removing the grid, everything should be cleaned up automatically.
It uses the FLIP animation technique to smoothly update the grid, applying a counter transform to the children of each item so that they do not appear distorted while the transition occurs.

It should work on container elements without CSS grid applied as well, but was developed and tested with CSS grid in mind.

Usage with Frameworks

The animate-css-grid library can easily be used with frameworks like React or Vue.

Check out the React example or the Vue example on Codepen!