gitextract_9gcmib4p/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bugs.yml │ │ └── features.yml │ ├── dependabot.yml │ └── workflows/ │ └── codeql-analysis.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── animate.compat.css ├── animate.css ├── docs/ │ ├── CNAME │ ├── index.html │ ├── main.mjs │ ├── modules/ │ │ ├── buildDocsIndex.mjs │ │ ├── darkMode.mjs │ │ ├── playground.mjs │ │ ├── slowDownAnimations.mjs │ │ ├── startAnimations.mjs │ │ └── toggle.mjs │ └── style.css ├── docsSource/ │ ├── compileAnimationList.js │ ├── compileMD.js │ ├── index.js │ ├── sections/ │ │ ├── 00-intro.md │ │ ├── 01-usage.md │ │ ├── 02-utilities.md │ │ ├── 03-best-practices.md │ │ ├── 04-javascript.md │ │ ├── 06-migration.md │ │ ├── 07-custom-builds.md │ │ ├── 08-accessibility.md │ │ ├── 09-contributors.md │ │ └── 09-license-contributing.md │ └── template.html ├── package.json ├── postcss.config.js └── source/ ├── _base.css ├── _vars.css ├── animate.css ├── attention_seekers/ │ ├── bounce.css │ ├── flash.css │ ├── headShake.css │ ├── heartBeat.css │ ├── jello.css │ ├── pulse.css │ ├── rubberBand.css │ ├── shake.css │ ├── shakeX.css │ ├── shakeY.css │ ├── swing.css │ ├── tada.css │ └── wobble.css ├── back_entrances/ │ ├── backInDown.css │ ├── backInLeft.css │ ├── backInRight.css │ └── backInUp.css ├── back_exits/ │ ├── backOutDown.css │ ├── backOutLeft.css │ ├── backOutRight.css │ └── backOutUp.css ├── bouncing_entrances/ │ ├── bounceIn.css │ ├── bounceInDown.css │ ├── bounceInLeft.css │ ├── bounceInRight.css │ └── bounceInUp.css ├── bouncing_exits/ │ ├── bounceOut.css │ ├── bounceOutDown.css │ ├── bounceOutLeft.css │ ├── bounceOutRight.css │ └── bounceOutUp.css ├── fading_entrances/ │ ├── fadeIn.css │ ├── fadeInBottomLeft.css │ ├── fadeInBottomRight.css │ ├── fadeInDown.css │ ├── fadeInDownBig.css │ ├── fadeInLeft.css │ ├── fadeInLeftBig.css │ ├── fadeInRight.css │ ├── fadeInRightBig.css │ ├── fadeInTopLeft.css │ ├── fadeInTopRight.css │ ├── fadeInUp.css │ └── fadeInUpBig.css ├── fading_exits/ │ ├── fadeOut.css │ ├── fadeOutBottomLeft.css │ ├── fadeOutBottomRight.css │ ├── fadeOutDown.css │ ├── fadeOutDownBig.css │ ├── fadeOutLeft.css │ ├── fadeOutLeftBig.css │ ├── fadeOutRight.css │ ├── fadeOutRightBig.css │ ├── fadeOutTopLeft.css │ ├── fadeOutTopRight.css │ ├── fadeOutUp.css │ └── fadeOutUpBig.css ├── flippers/ │ ├── flip.css │ ├── flipInX.css │ ├── flipInY.css │ ├── flipOutX.css │ └── flipOutY.css ├── lightspeed/ │ ├── lightSpeedInLeft.css │ ├── lightSpeedInRight.css │ ├── lightSpeedOutLeft.css │ └── lightSpeedOutRight.css ├── rotating_entrances/ │ ├── rotateIn.css │ ├── rotateInDownLeft.css │ ├── rotateInDownRight.css │ ├── rotateInUpLeft.css │ └── rotateInUpRight.css ├── rotating_exits/ │ ├── rotateOut.css │ ├── rotateOutDownLeft.css │ ├── rotateOutDownRight.css │ ├── rotateOutUpLeft.css │ └── rotateOutUpRight.css ├── sliding_entrances/ │ ├── slideInDown.css │ ├── slideInLeft.css │ ├── slideInRight.css │ └── slideInUp.css ├── sliding_exits/ │ ├── slideOutDown.css │ ├── slideOutLeft.css │ ├── slideOutRight.css │ └── slideOutUp.css ├── specials/ │ ├── hinge.css │ ├── jackInTheBox.css │ ├── rollIn.css │ └── rollOut.css ├── zooming_entrances/ │ ├── zoomIn.css │ ├── zoomInDown.css │ ├── zoomInLeft.css │ ├── zoomInRight.css │ └── zoomInUp.css └── zooming_exits/ ├── zoomOut.css ├── zoomOutDown.css ├── zoomOutLeft.css ├── zoomOutRight.css └── zoomOutUp.css