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.

Available since

1.0.0

.

See also:

Static methods

@:value({ duration : 0.5 })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.

Available since

1.0.0

.

@:value({ duration : 0.5 })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.

Available since

1.0.0

.

@:value({ duration : 0.5 })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.

Available since

1.0.0

.

@:value({ duration : 0.5 })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.

Available since

1.0.0

.