├── .gitignore ├── README.md ├── index.js ├── lib ├── add-unit.js ├── animation-property.js ├── create-css-translate-string.js ├── create-keyframe-animation.js ├── get-styles.js └── prefix.js ├── package.json └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # create-keyframe-animation 2 | 3 | Generate CSS keyframe animations dynamically in the browser with JavaScript. 4 | 5 | You describe them in JS and it generates and inserts a `