├── .babelrc ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── API.md ├── LICENSE ├── README.md ├── __tests__ ├── DOM.js └── __snapshots__ │ └── DOM.js.snap ├── documentation.yml ├── example ├── .babelrc ├── index.html ├── index.js └── package.json ├── package.json ├── src ├── Base.js ├── Canvas2D.js ├── DOM.js ├── WebGL.js ├── index.js └── utils │ └── cssRgba.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | kenburns.js 4 | lib 5 | example/bundle.js 6 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/__tests__/DOM.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/DOM.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/__tests__/__snapshots__/DOM.js.snap -------------------------------------------------------------------------------- /documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/documentation.yml -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-1"] 3 | } 4 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/example/index.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/example/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/package.json -------------------------------------------------------------------------------- /src/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/Base.js -------------------------------------------------------------------------------- /src/Canvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/Canvas2D.js -------------------------------------------------------------------------------- /src/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/DOM.js -------------------------------------------------------------------------------- /src/WebGL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/WebGL.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/cssRgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/src/utils/cssRgba.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gre/kenburns/HEAD/yarn.lock --------------------------------------------------------------------------------