Packagefeathers.motion
Classpublic class Reveal
InheritanceReveal Inheritance Object

Product Version : Feathers 2.1.0

Creates animated transitions for screen navigators that slide a display object out of view, by animating the x or y property, while revealing an existing display object that remains stationary below. The display object may slide up, right, down, or left.

See also

Transitions for Feathers screen navigators: Reveal


Public Methods
 MethodDefined By
  
createRevealDownTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that slides the old screen down out of view, animating the y property, to reveal the new screen under it.
Reveal
  
createRevealLeftTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that slides the old screen out of view to the left, animating the x property, to reveal the new screen under it.
Reveal
  
createRevealRightTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that slides the old screen out of view to the right, animating the x property, to reveal the new screen under it.
Reveal
  
createRevealUpTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that slides the old screen up out of view, animating the y property, to reveal the new screen under it.
Reveal
Method Detail
createRevealDownTransition()method
public static function createRevealDownTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that slides the old screen down out of view, animating the y property, to reveal the new screen under it. The new screen remains stationary.

Parameters

duration:Number (default = 0.5)
 
ease:Object (default = NaN)
 
tweenProperties:Object (default = null)

Returns
Function

See also

createRevealLeftTransition()method 
public static function createRevealLeftTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that slides the old screen out of view to the left, animating the x property, to reveal the new screen under it. The new screen remains stationary.

Parameters

duration:Number (default = 0.5)
 
ease:Object (default = NaN)
 
tweenProperties:Object (default = null)

Returns
Function

See also

createRevealRightTransition()method 
public static function createRevealRightTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that slides the old screen out of view to the right, animating the x property, to reveal the new screen under it. The new screen remains stationary.

Parameters

duration:Number (default = 0.5)
 
ease:Object (default = NaN)
 
tweenProperties:Object (default = null)

Returns
Function

See also

createRevealUpTransition()method 
public static function createRevealUpTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that slides the old screen up out of view, animating the y property, to reveal the new screen under it. The new screen remains stationary.

Parameters

duration:Number (default = 0.5)
 
ease:Object (default = NaN)
 
tweenProperties:Object (default = null)

Returns
Function

See also