Creates animated transitions for view navigators that moves two adjacent
views in the same direction (replacing one with the other), as if one view
is pushing the other out of the way. Looks similar to a classic slide
carousel. Animates the x
or y
property of the views. The views may move
up, down, right, or left.
1.0.0
.See also:
Static methods
staticdown(duration:Float = 0.5, ?ease:IEasing, ?interruptBehavior:EffectInterruptBehavior):(DisplayObject, DisplayObject) ‑> IEffectContext
Creates a transition function for a view navigator that slides the views downwards, with the new view appearing from the top and the old view disappearing on the bottom.
1.0.0
.staticleft(duration:Float = 0.5, ?ease:IEasing, ?interruptBehavior:EffectInterruptBehavior):(DisplayObject, DisplayObject) ‑> IEffectContext
Creates a transition function for a view navigator that slides the views to the left, with the new view appearing from the right side and the old view disappearing on the left side.
1.0.0
.staticright(duration:Float = 0.5, ?ease:IEasing, ?interruptBehavior:EffectInterruptBehavior):(DisplayObject, DisplayObject) ‑> IEffectContext
Creates a transition function for a view navigator that slides the views to the right, with the new view appearing from the left side and the old view disappearing on the right side.
1.0.0
.staticup(duration:Float = 0.5, ?ease:IEasing, ?interruptBehavior:EffectInterruptBehavior):(DisplayObject, DisplayObject) ‑> IEffectContext
Creates a transition function for a view navigator that slides the views upwards, with the new view appearing from the bottom and the old view disappearing on the top.
1.0.0
.