Packagefeathers.motion
Classpublic class ColorFade
InheritanceColorFade Inheritance Object

Product Version : Feathers 2.1.0

Creates animated transitions for screen navigators that fade a display object to a solid color.

See also

Transitions for Feathers screen navigators: ColorFade


Public Methods
 MethodDefined By
  
createBlackFadeTransition(duration:Number = 0.75, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that hides the old screen as a solid black color fades in over it.
ColorFade
  
createColorFadeTransition(color:uint, duration:Number = 0.75, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that hides the old screen as a customizable solid color fades in over it.
ColorFade
  
createWhiteFadeTransition(duration:Number = 0.75, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that hides the old screen as a solid white color fades in over it.
ColorFade
Method Detail
createBlackFadeTransition()method
public static function createBlackFadeTransition(duration:Number = 0.75, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that hides the old screen as a solid black color fades in over it. Then, the solid black color fades back out to show that the new screen has replaced the old screen.

Parameters

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

Returns
Function

See also

createColorFadeTransition()method 
public static function createColorFadeTransition(color:uint, duration:Number = 0.75, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that hides the old screen as a customizable solid color fades in over it. Then, the solid color fades back out to show that the new screen has replaced the old screen.

Parameters

color:uint
 
duration:Number (default = 0.75)
 
ease:Object (default = NaN)
 
tweenProperties:Object (default = null)

Returns
Function

See also

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

Creates a transition function for a screen navigator that hides the old screen as a solid white color fades in over it. Then, the solid white color fades back out to show that the new screen has replaced the old screen.

Parameters

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

Returns
Function

See also