├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── config.bundle.js ├── config.docs.js ├── docs ├── README.md ├── angular.component.ts ├── angular.main.ts ├── angular.module.ts ├── assets │ ├── animate.css │ ├── app.js │ ├── app.js.map │ ├── favicon.ico │ ├── ghlogo.png │ ├── normalize.css │ └── style.css ├── builder.main.ts ├── index.html └── index.ts ├── gulpfile.js ├── package.json ├── src ├── css-animator.ts ├── css-animator │ ├── angular.ts │ ├── angular │ │ ├── animates.directive.ts │ │ ├── animation.service.ts │ │ └── animator.module.ts │ ├── builder.ts │ ├── builder │ │ └── animation_builder.ts │ ├── contracts.ts │ ├── contracts │ │ ├── animation_options.ts │ │ ├── element_props.ts │ │ ├── listener_ref.ts │ │ └── timeout_ref.ts │ └── index.ts └── index.ts ├── tsconfig.dist.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/README.md -------------------------------------------------------------------------------- /config.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/config.bundle.js -------------------------------------------------------------------------------- /config.docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/config.docs.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/angular.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/angular.component.ts -------------------------------------------------------------------------------- /docs/angular.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/angular.main.ts -------------------------------------------------------------------------------- /docs/angular.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/angular.module.ts -------------------------------------------------------------------------------- /docs/assets/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/animate.css -------------------------------------------------------------------------------- /docs/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/app.js -------------------------------------------------------------------------------- /docs/assets/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/app.js.map -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/ghlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/ghlogo.png -------------------------------------------------------------------------------- /docs/assets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/normalize.css -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/builder.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/builder.main.ts -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/docs/index.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/package.json -------------------------------------------------------------------------------- /src/css-animator.ts: -------------------------------------------------------------------------------- 1 | export * from './css-animator/index'; 2 | -------------------------------------------------------------------------------- /src/css-animator/angular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/angular.ts -------------------------------------------------------------------------------- /src/css-animator/angular/animates.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/angular/animates.directive.ts -------------------------------------------------------------------------------- /src/css-animator/angular/animation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/angular/animation.service.ts -------------------------------------------------------------------------------- /src/css-animator/angular/animator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/angular/animator.module.ts -------------------------------------------------------------------------------- /src/css-animator/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/builder.ts -------------------------------------------------------------------------------- /src/css-animator/builder/animation_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/builder/animation_builder.ts -------------------------------------------------------------------------------- /src/css-animator/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/contracts.ts -------------------------------------------------------------------------------- /src/css-animator/contracts/animation_options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/contracts/animation_options.ts -------------------------------------------------------------------------------- /src/css-animator/contracts/element_props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/contracts/element_props.ts -------------------------------------------------------------------------------- /src/css-animator/contracts/listener_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/contracts/listener_ref.ts -------------------------------------------------------------------------------- /src/css-animator/contracts/timeout_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/contracts/timeout_ref.ts -------------------------------------------------------------------------------- /src/css-animator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/src/css-animator/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './css-animator/index'; 2 | -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiandev/css-animator/HEAD/yarn.lock --------------------------------------------------------------------------------