├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .nvmrc ├── LICENSE ├── README.md ├── bowe.json ├── dist └── animatelo.min.js ├── gulpfile.js ├── notes.md ├── package.json ├── src ├── animatelo.js ├── attentionSeekers │ ├── bounce.js │ ├── done │ │ ├── bounce.json │ │ ├── flash.json │ │ ├── headShake.json │ │ ├── jello.json │ │ ├── pulse.json │ │ ├── rubberBand.json │ │ ├── shake.json │ │ ├── swing.json │ │ ├── tada.json │ │ └── wobble.json │ ├── flash.js │ ├── headShake.js │ ├── jello.js │ ├── pulse.js │ ├── rubberBand.js │ ├── shake.js │ ├── swing.js │ ├── tada.js │ └── wobble.js ├── bouncingEntrances │ ├── bounceIn.js │ ├── bounceInDown.js │ ├── bounceInLeft.js │ ├── bounceInRight.js │ ├── bounceInUp.js │ └── done │ │ ├── bounceIn.json │ │ ├── bounceInDown.json │ │ ├── bounceInLeft.json │ │ ├── bounceInRight.json │ │ └── bounceInUp.json ├── bouncingExits │ ├── bounceOut.js │ ├── bounceOutDown.js │ ├── bounceOutLeft.js │ ├── bounceOutRight.js │ ├── bounceOutUp.js │ └── done │ │ ├── bounceOut.json │ │ ├── bounceOutDown.json │ │ ├── bounceOutLeft.json │ │ ├── bounceOutRight.json │ │ └── bounceOutUp.json ├── fadingEntrances │ ├── done │ │ ├── fadeIn.json │ │ ├── fadeInDown.json │ │ ├── fadeInDownBig.json │ │ ├── fadeInLeft.json │ │ ├── fadeInLeftBig.json │ │ ├── fadeInRight.json │ │ ├── fadeInRightBig.json │ │ ├── fadeInUp.json │ │ └── fadeInUpBig.json │ ├── fadeIn.js │ ├── fadeInDown.js │ ├── fadeInDownBig.js │ ├── fadeInLeft.js │ ├── fadeInLeftBig.js │ ├── fadeInRight.js │ ├── fadeInRightBig.js │ ├── fadeInUp.js │ └── fadeInUpBig.js ├── fadingExits │ ├── done │ │ ├── fadeOut.json │ │ ├── fadeOutDown.json │ │ ├── fadeOutDownBig.json │ │ ├── fadeOutLeft.json │ │ ├── fadeOutLeftBig.json │ │ ├── fadeOutRight.json │ │ ├── fadeOutRightBig.json │ │ ├── fadeOutUp.json │ │ └── fadeOutUpBig.json │ ├── fadeOut.js │ ├── fadeOutDown.js │ ├── fadeOutDownBig.js │ ├── fadeOutLeft.js │ ├── fadeOutLeftBig.js │ ├── fadeOutRight.js │ ├── fadeOutRightBig.js │ ├── fadeOutUp.js │ └── fadeOutUpBig.js ├── flippers │ ├── done │ │ ├── flip.json │ │ ├── flipInX.json │ │ ├── flipInY.json │ │ ├── flipOutX.json │ │ └── flipOutY.json │ ├── flip.js │ ├── flipInX.js │ ├── flipInY.js │ ├── flipOutX.js │ └── flipOutY.js ├── lightspeed │ ├── done │ │ ├── lightSpeedIn.json │ │ └── lightSpeedOut.json │ ├── lightSpeedIn.js │ └── lightSpeedOut.js ├── rotatingEntrances │ ├── done │ │ ├── rotateIn.json │ │ ├── rotateInDownLeft.json │ │ ├── rotateInDownRight.json │ │ ├── rotateInUpLeft.json │ │ └── rotateInUpRight.json │ ├── rotateIn.js │ ├── rotateInDownLeft.js │ ├── rotateInDownRight.js │ ├── rotateInUpLeft.js │ └── rotateInUpRight.js ├── rotatingExits │ ├── done │ │ ├── rotateOut.json │ │ ├── rotateOutDownLeft.json │ │ ├── rotateOutDownRight.json │ │ ├── rotateOutUpLeft.json │ │ └── rotateOutUpRight.json │ ├── rotateOut.js │ ├── rotateOutDownLeft.js │ ├── rotateOutDownRight.js │ ├── rotateOutUpLeft.js │ └── rotateOutUpRight.js ├── slidingEntrances │ ├── done │ │ ├── slideInDown.json │ │ ├── slideInLeft.json │ │ ├── slideInRight.json │ │ └── slideInUp.json │ ├── slideInDown.js │ ├── slideInLeft.js │ ├── slideInRight.js │ └── slideInUp.js ├── slidingExits │ ├── done │ │ ├── slideOutDown.json │ │ ├── slideOutLeft.json │ │ ├── slideOutRight.json │ │ └── slideOutUp.json │ ├── slideOutDown.js │ ├── slideOutLeft.js │ ├── slideOutRight.js │ └── slideOutUp.js ├── specials │ ├── done │ │ ├── hinge.json │ │ ├── rollIn.json │ │ └── rollOut.json │ ├── hinge.js │ ├── jackInTheBox.js │ ├── jackInTheBox.json │ ├── rollIn.js │ └── rollOut.js ├── zoomingEntrances │ ├── done │ │ ├── zoomIn.json │ │ ├── zoomInDown.json │ │ ├── zoomInLeft.json │ │ ├── zoomInRight.json │ │ └── zoomInUp.json │ ├── zoomIn.js │ ├── zoomInDown.js │ ├── zoomInLeft.js │ ├── zoomInRight.js │ └── zoomInUp.js └── zoomingExits │ ├── done │ ├── zoomOut.json │ ├── zoomOutDown.json │ ├── zoomOutLeft.json │ ├── zoomOutRight.json │ └── zoomOutUp.json │ ├── zoomOut.js │ ├── zoomOutDown.js │ ├── zoomOutLeft.js │ ├── zoomOutRight.js │ └── zoomOutUp.js ├── test ├── comparison.css ├── comparison.html ├── comparison.js ├── test.css ├── test.html └── test.js └── usage.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.9.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/README.md -------------------------------------------------------------------------------- /bowe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/bowe.json -------------------------------------------------------------------------------- /dist/animatelo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/dist/animatelo.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/notes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/package.json -------------------------------------------------------------------------------- /src/animatelo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/animatelo.js -------------------------------------------------------------------------------- /src/attentionSeekers/bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/bounce.js -------------------------------------------------------------------------------- /src/attentionSeekers/done/bounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/bounce.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/flash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/flash.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/headShake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/headShake.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/jello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/jello.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/pulse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/pulse.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/rubberBand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/rubberBand.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/shake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/shake.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/swing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/swing.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/tada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/tada.json -------------------------------------------------------------------------------- /src/attentionSeekers/done/wobble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/done/wobble.json -------------------------------------------------------------------------------- /src/attentionSeekers/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/flash.js -------------------------------------------------------------------------------- /src/attentionSeekers/headShake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/headShake.js -------------------------------------------------------------------------------- /src/attentionSeekers/jello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/jello.js -------------------------------------------------------------------------------- /src/attentionSeekers/pulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/pulse.js -------------------------------------------------------------------------------- /src/attentionSeekers/rubberBand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/rubberBand.js -------------------------------------------------------------------------------- /src/attentionSeekers/shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/shake.js -------------------------------------------------------------------------------- /src/attentionSeekers/swing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/swing.js -------------------------------------------------------------------------------- /src/attentionSeekers/tada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/tada.js -------------------------------------------------------------------------------- /src/attentionSeekers/wobble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/attentionSeekers/wobble.js -------------------------------------------------------------------------------- /src/bouncingEntrances/bounceIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/bounceIn.js -------------------------------------------------------------------------------- /src/bouncingEntrances/bounceInDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/bounceInDown.js -------------------------------------------------------------------------------- /src/bouncingEntrances/bounceInLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/bounceInLeft.js -------------------------------------------------------------------------------- /src/bouncingEntrances/bounceInRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/bounceInRight.js -------------------------------------------------------------------------------- /src/bouncingEntrances/bounceInUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/bounceInUp.js -------------------------------------------------------------------------------- /src/bouncingEntrances/done/bounceIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/done/bounceIn.json -------------------------------------------------------------------------------- /src/bouncingEntrances/done/bounceInDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/done/bounceInDown.json -------------------------------------------------------------------------------- /src/bouncingEntrances/done/bounceInLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/done/bounceInLeft.json -------------------------------------------------------------------------------- /src/bouncingEntrances/done/bounceInRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/done/bounceInRight.json -------------------------------------------------------------------------------- /src/bouncingEntrances/done/bounceInUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingEntrances/done/bounceInUp.json -------------------------------------------------------------------------------- /src/bouncingExits/bounceOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/bounceOut.js -------------------------------------------------------------------------------- /src/bouncingExits/bounceOutDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/bounceOutDown.js -------------------------------------------------------------------------------- /src/bouncingExits/bounceOutLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/bounceOutLeft.js -------------------------------------------------------------------------------- /src/bouncingExits/bounceOutRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/bounceOutRight.js -------------------------------------------------------------------------------- /src/bouncingExits/bounceOutUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/bounceOutUp.js -------------------------------------------------------------------------------- /src/bouncingExits/done/bounceOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/done/bounceOut.json -------------------------------------------------------------------------------- /src/bouncingExits/done/bounceOutDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/done/bounceOutDown.json -------------------------------------------------------------------------------- /src/bouncingExits/done/bounceOutLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/done/bounceOutLeft.json -------------------------------------------------------------------------------- /src/bouncingExits/done/bounceOutRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/done/bounceOutRight.json -------------------------------------------------------------------------------- /src/bouncingExits/done/bounceOutUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/bouncingExits/done/bounceOutUp.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeIn.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInDown.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInDownBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInDownBig.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInLeft.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInLeftBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInLeftBig.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInRight.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInRightBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInRightBig.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInUp.json -------------------------------------------------------------------------------- /src/fadingEntrances/done/fadeInUpBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/done/fadeInUpBig.json -------------------------------------------------------------------------------- /src/fadingEntrances/fadeIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeIn.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInDown.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInDownBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInDownBig.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInLeft.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInLeftBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInLeftBig.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInRight.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInRightBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInRightBig.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInUp.js -------------------------------------------------------------------------------- /src/fadingEntrances/fadeInUpBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingEntrances/fadeInUpBig.js -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOut.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutDown.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutDownBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutDownBig.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutLeft.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutLeftBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutLeftBig.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutRight.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutRightBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutRightBig.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutUp.json -------------------------------------------------------------------------------- /src/fadingExits/done/fadeOutUpBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/done/fadeOutUpBig.json -------------------------------------------------------------------------------- /src/fadingExits/fadeOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOut.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutDown.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutDownBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutDownBig.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutLeft.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutLeftBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutLeftBig.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutRight.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutRightBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutRightBig.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutUp.js -------------------------------------------------------------------------------- /src/fadingExits/fadeOutUpBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/fadingExits/fadeOutUpBig.js -------------------------------------------------------------------------------- /src/flippers/done/flip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/done/flip.json -------------------------------------------------------------------------------- /src/flippers/done/flipInX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/done/flipInX.json -------------------------------------------------------------------------------- /src/flippers/done/flipInY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/done/flipInY.json -------------------------------------------------------------------------------- /src/flippers/done/flipOutX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/done/flipOutX.json -------------------------------------------------------------------------------- /src/flippers/done/flipOutY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/done/flipOutY.json -------------------------------------------------------------------------------- /src/flippers/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/flip.js -------------------------------------------------------------------------------- /src/flippers/flipInX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/flipInX.js -------------------------------------------------------------------------------- /src/flippers/flipInY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/flipInY.js -------------------------------------------------------------------------------- /src/flippers/flipOutX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/flipOutX.js -------------------------------------------------------------------------------- /src/flippers/flipOutY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/flippers/flipOutY.js -------------------------------------------------------------------------------- /src/lightspeed/done/lightSpeedIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/lightspeed/done/lightSpeedIn.json -------------------------------------------------------------------------------- /src/lightspeed/done/lightSpeedOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/lightspeed/done/lightSpeedOut.json -------------------------------------------------------------------------------- /src/lightspeed/lightSpeedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/lightspeed/lightSpeedIn.js -------------------------------------------------------------------------------- /src/lightspeed/lightSpeedOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/lightspeed/lightSpeedOut.js -------------------------------------------------------------------------------- /src/rotatingEntrances/done/rotateIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/done/rotateIn.json -------------------------------------------------------------------------------- /src/rotatingEntrances/done/rotateInDownLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/done/rotateInDownLeft.json -------------------------------------------------------------------------------- /src/rotatingEntrances/done/rotateInDownRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/done/rotateInDownRight.json -------------------------------------------------------------------------------- /src/rotatingEntrances/done/rotateInUpLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/done/rotateInUpLeft.json -------------------------------------------------------------------------------- /src/rotatingEntrances/done/rotateInUpRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/done/rotateInUpRight.json -------------------------------------------------------------------------------- /src/rotatingEntrances/rotateIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/rotateIn.js -------------------------------------------------------------------------------- /src/rotatingEntrances/rotateInDownLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/rotateInDownLeft.js -------------------------------------------------------------------------------- /src/rotatingEntrances/rotateInDownRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/rotateInDownRight.js -------------------------------------------------------------------------------- /src/rotatingEntrances/rotateInUpLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/rotateInUpLeft.js -------------------------------------------------------------------------------- /src/rotatingEntrances/rotateInUpRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingEntrances/rotateInUpRight.js -------------------------------------------------------------------------------- /src/rotatingExits/done/rotateOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/done/rotateOut.json -------------------------------------------------------------------------------- /src/rotatingExits/done/rotateOutDownLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/done/rotateOutDownLeft.json -------------------------------------------------------------------------------- /src/rotatingExits/done/rotateOutDownRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/done/rotateOutDownRight.json -------------------------------------------------------------------------------- /src/rotatingExits/done/rotateOutUpLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/done/rotateOutUpLeft.json -------------------------------------------------------------------------------- /src/rotatingExits/done/rotateOutUpRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/done/rotateOutUpRight.json -------------------------------------------------------------------------------- /src/rotatingExits/rotateOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/rotateOut.js -------------------------------------------------------------------------------- /src/rotatingExits/rotateOutDownLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/rotateOutDownLeft.js -------------------------------------------------------------------------------- /src/rotatingExits/rotateOutDownRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/rotateOutDownRight.js -------------------------------------------------------------------------------- /src/rotatingExits/rotateOutUpLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/rotateOutUpLeft.js -------------------------------------------------------------------------------- /src/rotatingExits/rotateOutUpRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/rotatingExits/rotateOutUpRight.js -------------------------------------------------------------------------------- /src/slidingEntrances/done/slideInDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/done/slideInDown.json -------------------------------------------------------------------------------- /src/slidingEntrances/done/slideInLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/done/slideInLeft.json -------------------------------------------------------------------------------- /src/slidingEntrances/done/slideInRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/done/slideInRight.json -------------------------------------------------------------------------------- /src/slidingEntrances/done/slideInUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/done/slideInUp.json -------------------------------------------------------------------------------- /src/slidingEntrances/slideInDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/slideInDown.js -------------------------------------------------------------------------------- /src/slidingEntrances/slideInLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/slideInLeft.js -------------------------------------------------------------------------------- /src/slidingEntrances/slideInRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/slideInRight.js -------------------------------------------------------------------------------- /src/slidingEntrances/slideInUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingEntrances/slideInUp.js -------------------------------------------------------------------------------- /src/slidingExits/done/slideOutDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/done/slideOutDown.json -------------------------------------------------------------------------------- /src/slidingExits/done/slideOutLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/done/slideOutLeft.json -------------------------------------------------------------------------------- /src/slidingExits/done/slideOutRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/done/slideOutRight.json -------------------------------------------------------------------------------- /src/slidingExits/done/slideOutUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/done/slideOutUp.json -------------------------------------------------------------------------------- /src/slidingExits/slideOutDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/slideOutDown.js -------------------------------------------------------------------------------- /src/slidingExits/slideOutLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/slideOutLeft.js -------------------------------------------------------------------------------- /src/slidingExits/slideOutRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/slideOutRight.js -------------------------------------------------------------------------------- /src/slidingExits/slideOutUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/slidingExits/slideOutUp.js -------------------------------------------------------------------------------- /src/specials/done/hinge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/done/hinge.json -------------------------------------------------------------------------------- /src/specials/done/rollIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/done/rollIn.json -------------------------------------------------------------------------------- /src/specials/done/rollOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/done/rollOut.json -------------------------------------------------------------------------------- /src/specials/hinge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/hinge.js -------------------------------------------------------------------------------- /src/specials/jackInTheBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/jackInTheBox.js -------------------------------------------------------------------------------- /src/specials/jackInTheBox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/jackInTheBox.json -------------------------------------------------------------------------------- /src/specials/rollIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/rollIn.js -------------------------------------------------------------------------------- /src/specials/rollOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/specials/rollOut.js -------------------------------------------------------------------------------- /src/zoomingEntrances/done/zoomIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/done/zoomIn.json -------------------------------------------------------------------------------- /src/zoomingEntrances/done/zoomInDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/done/zoomInDown.json -------------------------------------------------------------------------------- /src/zoomingEntrances/done/zoomInLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/done/zoomInLeft.json -------------------------------------------------------------------------------- /src/zoomingEntrances/done/zoomInRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/done/zoomInRight.json -------------------------------------------------------------------------------- /src/zoomingEntrances/done/zoomInUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/done/zoomInUp.json -------------------------------------------------------------------------------- /src/zoomingEntrances/zoomIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/zoomIn.js -------------------------------------------------------------------------------- /src/zoomingEntrances/zoomInDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/zoomInDown.js -------------------------------------------------------------------------------- /src/zoomingEntrances/zoomInLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/zoomInLeft.js -------------------------------------------------------------------------------- /src/zoomingEntrances/zoomInRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/zoomInRight.js -------------------------------------------------------------------------------- /src/zoomingEntrances/zoomInUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingEntrances/zoomInUp.js -------------------------------------------------------------------------------- /src/zoomingExits/done/zoomOut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/done/zoomOut.json -------------------------------------------------------------------------------- /src/zoomingExits/done/zoomOutDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/done/zoomOutDown.json -------------------------------------------------------------------------------- /src/zoomingExits/done/zoomOutLeft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/done/zoomOutLeft.json -------------------------------------------------------------------------------- /src/zoomingExits/done/zoomOutRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/done/zoomOutRight.json -------------------------------------------------------------------------------- /src/zoomingExits/done/zoomOutUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/done/zoomOutUp.json -------------------------------------------------------------------------------- /src/zoomingExits/zoomOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/zoomOut.js -------------------------------------------------------------------------------- /src/zoomingExits/zoomOutDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/zoomOutDown.js -------------------------------------------------------------------------------- /src/zoomingExits/zoomOutLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/zoomOutLeft.js -------------------------------------------------------------------------------- /src/zoomingExits/zoomOutRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/zoomOutRight.js -------------------------------------------------------------------------------- /src/zoomingExits/zoomOutUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/src/zoomingExits/zoomOutUp.js -------------------------------------------------------------------------------- /test/comparison.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/comparison.css -------------------------------------------------------------------------------- /test/comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/comparison.html -------------------------------------------------------------------------------- /test/comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/comparison.js -------------------------------------------------------------------------------- /test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/test.css -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/test/test.js -------------------------------------------------------------------------------- /usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbok/animatelo/HEAD/usage.md --------------------------------------------------------------------------------