├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── base.js ├── demo ├── data.js ├── index.js └── style.css ├── dom ├── create-animation.js ├── create-property.js ├── create-timeline.js ├── html │ ├── property-animation.html │ ├── property.html │ ├── timeline-animation.html │ └── timeline.html ├── icons.css ├── number-editors.js ├── select-box.js └── style.css ├── icons ├── left.png ├── right copy.png ├── right.png ├── right1.png ├── toggle-fill.png └── toggle.png ├── index.js ├── indexof-name.js ├── lib ├── property-data.js └── timeline-data.js ├── old ├── animations.js ├── control-row.js ├── control.js ├── css │ └── style.css ├── editors │ ├── VecN.js │ └── index.js ├── html │ ├── control-animation.html │ ├── control.html │ ├── layer-animation.html │ └── layer.html ├── index.js ├── layer-row.js ├── layer.js └── layers.js ├── package.json └── unstyled.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/README.md -------------------------------------------------------------------------------- /base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/base.js -------------------------------------------------------------------------------- /demo/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/demo/data.js -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/demo/style.css -------------------------------------------------------------------------------- /dom/create-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/create-animation.js -------------------------------------------------------------------------------- /dom/create-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/create-property.js -------------------------------------------------------------------------------- /dom/create-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/create-timeline.js -------------------------------------------------------------------------------- /dom/html/property-animation.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /dom/html/property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/html/property.html -------------------------------------------------------------------------------- /dom/html/timeline-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/html/timeline-animation.html -------------------------------------------------------------------------------- /dom/html/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/html/timeline.html -------------------------------------------------------------------------------- /dom/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/icons.css -------------------------------------------------------------------------------- /dom/number-editors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/number-editors.js -------------------------------------------------------------------------------- /dom/select-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/select-box.js -------------------------------------------------------------------------------- /dom/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/dom/style.css -------------------------------------------------------------------------------- /icons/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/left.png -------------------------------------------------------------------------------- /icons/right copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/right copy.png -------------------------------------------------------------------------------- /icons/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/right.png -------------------------------------------------------------------------------- /icons/right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/right1.png -------------------------------------------------------------------------------- /icons/toggle-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/toggle-fill.png -------------------------------------------------------------------------------- /icons/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/icons/toggle.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/index.js -------------------------------------------------------------------------------- /indexof-name.js: -------------------------------------------------------------------------------- 1 | module.exports = require('indexof-property')('name') 2 | -------------------------------------------------------------------------------- /lib/property-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/lib/property-data.js -------------------------------------------------------------------------------- /lib/timeline-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/lib/timeline-data.js -------------------------------------------------------------------------------- /old/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/animations.js -------------------------------------------------------------------------------- /old/control-row.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/control.js -------------------------------------------------------------------------------- /old/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/css/style.css -------------------------------------------------------------------------------- /old/editors/VecN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/editors/VecN.js -------------------------------------------------------------------------------- /old/editors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/editors/index.js -------------------------------------------------------------------------------- /old/html/control-animation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/html/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/html/control.html -------------------------------------------------------------------------------- /old/html/layer-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/html/layer-animation.html -------------------------------------------------------------------------------- /old/html/layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/html/layer.html -------------------------------------------------------------------------------- /old/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/index.js -------------------------------------------------------------------------------- /old/layer-row.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/layer.js -------------------------------------------------------------------------------- /old/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/old/layers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/package.json -------------------------------------------------------------------------------- /unstyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/keytime-editor/HEAD/unstyled.js --------------------------------------------------------------------------------