Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Effects: Rewrite
1. Introduces a set of helper methods to easily create and define new effects. 2. Uses clip animations and placeholders instead of wrappers for clip effects. 3. Ensures all animations are detectable as animated Fixes #10599 Fixes #9477 Fixes #9257 Fixes #9066 Fixes #8867 Fixes #8671 Fixes #8505 Fixes #7885 Fixes #7041 Closes gh-1017
- Loading branch information
Showing
with
921 additions
and 806 deletions.
- +2 −2 demos/effect/addClass.html
- +1 −1 demos/effect/animate.html
- +2 −2 demos/effect/default.html
- +4 −2 demos/effect/hide.html
- +4 −2 demos/effect/show.html
- +2 −2 demos/effect/switchClass.html
- +4 −2 demos/effect/toggle.html
- +35 −16 tests/unit/effects/effects.html
- +75 −25 tests/unit/effects/effects_core.js
- +2 −2 tests/unit/effects/effects_scale.js
- +2 −0 tests/visual/effects/all.html
- +2 −1 tests/visual/effects/clip.html
- +1 −1 tests/visual/effects/effects.js
- BIN tests/visual/effects/image.png
- +1 −0 tests/visual/index.html
- +28 −54 ui/effect-blind.js
- +25 −45 ui/effect-bounce.js
- +24 −42 ui/effect-clip.js
- +22 −35 ui/effect-drop.js
- +13 −18 ui/effect-explode.js
- +13 −12 ui/effect-fade.js
- +41 −44 ui/effect-fold.js
- +11 −20 ui/effect-highlight.js
- +5 −29 ui/effect-puff.js
- +18 −33 ui/effect-pulsate.js
- +13 −52 ui/effect-scale.js
- +20 −38 ui/effect-shake.js
- +79 −127 ui/effect-size.js
- +34 −39 ui/effect-slide.js
- +5 −30 ui/effect-transfer.js
- +433 −130 ui/effect.js
Oops, something went wrong.