npm install css-animationmake css animation easier
[![NPM version][npm-image]][npm-url]
[npm-image]: http://img.shields.io/npm/v/css-animation.svg?style=flat-square
[npm-url]: http://npmjs.org/package/css-animation
```
npm install
npm start
http://localhost:6006/
online example: http://yiminghe.github.io/css-animation/
* support ie8,ie8+,chrome,firefox,safari

`js``
import anim from 'css-animation';
anim(el,animationName,function(){});
| name | type | default | description |
|---|---|---|---|
| el | DOMElement | dom element to be animated | |
| animationName | String|Object | will add animationName (if string) or animationName.name (if object) as class to el, then setTimeout 0 to add ${animationName}-active (if string) or animationName.active (if object) to el | |
| callback | Function | triggered when anim caused by animationName is done |
css-animation is released under the MIT license.