ember-animated
Advanced tools
Changelog
0.5.1
Changelog
0.5.0
BREAKING CHANGE: changes the default duration from 2000 to 500
DEPRECATION: AnimatedContainer's "class" argument is deprecated in favor of the class attribute. The old usage was
{{!-- these are exactly equivalent to each other --}}
{{#animated-container class=something}}
<AnimatedContainer @class={{something}}>
The new usage is
<AnimatedContainer class={{something}}>
Changelog
0.4.1
Changelog
0.4.0
Changelog
0.3.2
Changelog
0.3.0
animated-each
now yields an index
variable, just like regular Ember each
. Thanks @Cryrivers.Changelog
0.2.0
BREAKING: Sprite no longer has initialOpacity and finalOpacity. These are now covered by initialComputedStyle and finalComputedStyle, which are also extensible to track many other CSS properties.
BREAKING: orphaned transitions will no longer see removedSprites by default when the corresponding animator is being destroyed. It's usually not what you want. You can opt-in to animating removed sprites by setting finalRemoval=true on the animator (this is analogous to initialInsertion). None of this impacts an animator's ability to match against other animators, even when it's being destroyed (sentSprites are still always available).
Changelog
0.1.0
this
.animate
method. Instead, Motions are defined to export functions that automatically animate.inAndOut
to easeInAndOut
for consistency with easeIn
and easeOut
.scale
motion now adjusts initial scale correctly. Previously you needed to do it manually, but now we can make it automatic using Sprite's originalInitialBounds and originalFinalBounds.