gitextract_o9xnzj9n/ ├── .babelrc ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── V2_CHANGES.md ├── babel.config.js ├── bower.json ├── docs.ts ├── gsap/ │ ├── GreenSock Animation Platform (GSAP) Speed Test.html │ └── GreenSock Animation Platform (GSAP) Speed Test_files/ │ ├── CSSPlugin.js.download │ ├── CSSPlugin.min.js.download │ ├── Ease.js.download │ ├── TweenLite.min.js.download │ ├── anime.min.js.download │ ├── css │ ├── dojo.js.download │ ├── easeljs-0.4.2.min.js.download │ ├── easing.js.download │ ├── jquery-3.0.0.min.js.download │ ├── jquery.gsap.min.js.download │ ├── mootools-core-1.4.5-full-compat-yc.js.download │ ├── tweenjs-0.2.0.min.js.download │ ├── web-animations-basic.min.js.download │ └── zepto.min.js.download ├── legacy/ │ ├── README.md │ ├── blur.ts │ ├── borderColor.ts │ ├── clip.ts │ ├── normalisations.ts │ └── opacity.ts ├── package.json ├── rollup.config.js ├── src/ │ ├── Velocity/ │ │ ├── _all.ts │ │ ├── actions/ │ │ │ ├── _all.ts │ │ │ ├── actions.ts │ │ │ ├── finish.ts │ │ │ ├── index.ts │ │ │ ├── option.ts │ │ │ ├── pauseResume.ts │ │ │ ├── property.ts │ │ │ ├── reverse.ts │ │ │ ├── stop.ts │ │ │ ├── style.ts │ │ │ └── tween.ts │ │ ├── camelCase.ts │ │ ├── complete.ts │ │ ├── css/ │ │ │ ├── _all.ts │ │ │ ├── augmentDimension.ts │ │ │ ├── colors.ts │ │ │ ├── fixColors.ts │ │ │ ├── getPropertyValue.ts │ │ │ ├── index.ts │ │ │ ├── removeNestedCalc.ts │ │ │ └── setPropertyValue.ts │ │ ├── data.ts │ │ ├── defaults.ts │ │ ├── easing/ │ │ │ ├── _all.ts │ │ │ ├── back.ts │ │ │ ├── bezier.ts │ │ │ ├── bounce.ts │ │ │ ├── easings.ts │ │ │ ├── elastic.ts │ │ │ ├── index.ts │ │ │ ├── spring_rk4.ts │ │ │ ├── step.ts │ │ │ └── string.ts │ │ ├── index.ts │ │ ├── normalizations/ │ │ │ ├── _all.ts │ │ │ ├── dimensions.ts │ │ │ ├── display.ts │ │ │ ├── index.ts │ │ │ ├── normalizations.ts │ │ │ ├── normalizationsObject.ts │ │ │ ├── scroll.ts │ │ │ ├── style.ts │ │ │ ├── svg/ │ │ │ │ ├── _all.ts │ │ │ │ ├── attributes.ts │ │ │ │ ├── dimensions.ts │ │ │ │ └── index.ts │ │ │ └── tween.ts │ │ ├── options.ts │ │ ├── patch.ts │ │ ├── queue.ts │ │ ├── sequences.ts │ │ ├── sequencesObject.ts │ │ ├── state.ts │ │ ├── tick.ts │ │ └── tweens.ts │ ├── constants.ts │ ├── fakeClass.js │ ├── fakeClass.ts │ ├── tsconfig.json │ ├── types.ts │ ├── utility.ts │ ├── velocity.ts │ └── velocityFn.ts ├── src-ui/ │ ├── attention_seekers/ │ │ ├── _all.ts │ │ ├── bounce.ts │ │ ├── flash.ts │ │ ├── headShake.ts │ │ ├── jello.ts │ │ ├── pulse.ts │ │ ├── rubberBand.ts │ │ ├── shake.ts │ │ ├── swing.ts │ │ ├── tada.ts │ │ └── wobble.ts │ ├── bouncing_entrances/ │ │ ├── _all.ts │ │ ├── bounceIn.ts │ │ ├── bounceInDown.ts │ │ ├── bounceInLeft.ts │ │ ├── bounceInRight.ts │ │ └── bounceInUp.ts │ ├── bouncing_exits/ │ │ ├── _all.ts │ │ ├── bounceOut.ts │ │ ├── bounceOutDown.ts │ │ ├── bounceOutLeft.ts │ │ ├── bounceOutRight.ts │ │ └── bounceOutUp.ts │ ├── fading_entrances/ │ │ ├── _all.ts │ │ ├── fadeIn.ts │ │ ├── fadeInDown.ts │ │ ├── fadeInDownBig.ts │ │ ├── fadeInLeft.ts │ │ ├── fadeInLeftBig.ts │ │ ├── fadeInRight.ts │ │ ├── fadeInRightBig.ts │ │ ├── fadeInUp.ts │ │ └── fadeInUpBig.ts │ ├── fading_exits/ │ │ ├── _all.ts │ │ ├── fadeOut.ts │ │ ├── fadeOutDown.ts │ │ ├── fadeOutDownBig.ts │ │ ├── fadeOutLeft.ts │ │ ├── fadeOutLeftBig.ts │ │ ├── fadeOutRight.ts │ │ ├── fadeOutRightBig.ts │ │ ├── fadeOutUp.ts │ │ └── fadeOutUpBig.ts │ ├── flippers/ │ │ ├── _all.ts │ │ ├── flip.ts │ │ ├── flipInX.ts │ │ ├── flipInY.ts │ │ ├── flipOutX.ts │ │ └── flipOutY.ts │ ├── lightspeed/ │ │ ├── _all.ts │ │ ├── lightSpeedIn.ts │ │ └── lightSpeedOut.ts │ ├── rotating_entrances/ │ │ ├── _all.ts │ │ ├── rotateIn.ts │ │ ├── rotateInDownLeft.ts │ │ ├── rotateInDownRight.ts │ │ ├── rotateInUpLeft.ts │ │ └── rotateInUpRight.ts │ ├── rotating_exits/ │ │ ├── _all.ts │ │ ├── rotateOut.ts │ │ ├── rotateOutDownLeft.ts │ │ ├── rotateOutDownRight.ts │ │ ├── rotateOutUpLeft.ts │ │ └── rotateOutUpRight.ts │ ├── sliding_entrances/ │ │ ├── _all.ts │ │ ├── slideInDown.ts │ │ ├── slideInLeft.ts │ │ ├── slideInRight.ts │ │ └── slideInUp.ts │ ├── sliding_exits/ │ │ ├── _all.ts │ │ ├── slideOutDown.ts │ │ ├── slideOutLeft.ts │ │ ├── slideOutRight.ts │ │ └── slideOutUp.ts │ ├── specials/ │ │ ├── _all.ts │ │ ├── hinge.ts │ │ ├── jackInTheBox.ts │ │ ├── rollIn.ts │ │ └── rollOut.ts │ ├── tsconfig.json │ ├── velocity.ui.ts │ ├── zooming_entrances/ │ │ ├── _all.ts │ │ ├── zoomIn.ts │ │ ├── zoomInDown.ts │ │ ├── zoomInLeft.ts │ │ ├── zoomInRight.ts │ │ └── zoomInUp.ts │ └── zooming_exits/ │ ├── _all.ts │ ├── zoomOut.ts │ ├── zoomOutDown.ts │ ├── zoomOutLeft.ts │ ├── zoomOutRight.ts │ └── zoomOutUp.ts ├── test/ │ ├── index.html │ ├── qunit-2.5.0.css │ ├── qunit-2.5.0.js │ ├── qunit-assert-close.js │ ├── src/ │ │ ├── 1_Core/ │ │ │ ├── Arguments.ts │ │ │ ├── End Value Caching.ts │ │ │ ├── End Value Setting.ts │ │ │ ├── Start Value Calculation.ts │ │ │ ├── Unit Calculation.ts │ │ │ └── _module.ts │ │ ├── 2_Option/ │ │ │ ├── Option Begin.ts │ │ │ ├── Option Complete.ts │ │ │ ├── Option Delay.ts │ │ │ ├── Option Duration.ts │ │ │ ├── Option Easing.ts │ │ │ ├── Option Fps Limit.ts │ │ │ ├── Option Loop.ts │ │ │ ├── Option Progress.ts │ │ │ ├── Option Queue.ts │ │ │ ├── Option Repeat.ts │ │ │ ├── Option Speed.ts │ │ │ ├── Option Sync.ts │ │ │ └── _module.ts │ │ ├── 3_Command/ │ │ │ ├── Command Finish.ts │ │ │ ├── Command Pause + Resume.ts │ │ │ ├── Command Reverse.ts │ │ │ ├── Command Scroll.ts │ │ │ ├── Command Stop.ts │ │ │ ├── Command Tween.ts │ │ │ └── _module.ts │ │ ├── 4_Feature/ │ │ │ ├── Feature Classname.ts │ │ │ ├── Feature Colors.ts │ │ │ ├── Feature Forcefeeding.ts │ │ │ ├── Feature Promises.ts │ │ │ ├── Feature Sequences.ts │ │ │ ├── Feature Value Functions.ts │ │ │ └── _module.ts │ │ ├── 5_UIPack/ │ │ │ ├── Packaged Effect slideUp+Down.ts │ │ │ ├── UI Pack Call Options.ts │ │ │ ├── UI Pack Callbacks.ts │ │ │ ├── UI Pack In+Out.ts │ │ │ ├── UI Pack RegisterEffect.ts │ │ │ ├── UI Pack RunSequence.ts │ │ │ └── _module.ts │ │ ├── 6_Properties/ │ │ │ ├── Normalization property value reordering.ts │ │ │ ├── Property Display.ts │ │ │ ├── Property Visibility.ts │ │ │ └── _module.ts │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── utilities.ts │ └── test.js ├── tsconfig.json ├── tslint.json ├── velocity.d.ts ├── velocity.es5.js ├── velocity.js ├── velocity.ui.js └── version.ts