├── .babelrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src └── driver.js └── test └── animation-driver-test.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/package.json -------------------------------------------------------------------------------- /src/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/src/driver.js -------------------------------------------------------------------------------- /test/animation-driver-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Widdershin/cycle-animation-driver/HEAD/test/animation-driver-test.js --------------------------------------------------------------------------------