Packagefeathers.motion
Classpublic class Wipe
InheritanceWipe Inheritance Object

Creates animated effects, like transitions for screen navigators, that wipes a display object out of view, revealing another display object under the first. Both display objects remain stationary while the effect animates clipping rectangles.

See also

Transitions for Feathers screen navigators: Wipe


Public Methods
 MethodDefined By
  
createWipeDownTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that wipes the old screen down, animating the y and height properties of a clipRect, to reveal the new screen under it.
Wipe
  
createWipeLeftTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that wipes the old screen out of view to the left, animating the width property of a clipRect, to reveal the new screen under it.
Wipe
  
createWipeRightTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that wipes the old screen out of view to the right, animating the x and width properties of a clipRect, to reveal the new screen under it.
Wipe
  
createWipeUpTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function
[static] Creates a transition function for a screen navigator that wipes the old screen up, animating the height property of a clipRect, to reveal the new screen under it.
Wipe
Method Detail
createWipeDownTransition()method
public static function createWipeDownTransition(duration:Number = 0.5, ease:Object, tweenProperties:Object = null):Function

Creates a transition function for a screen navigator that wipes the old screen down, animating the y and height properties of a clipRect, 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

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

Creates a transition function for a screen navigator that wipes the old screen out of view to the left, animating the width property of a clipRect, 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

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

Creates a transition function for a screen navigator that wipes the old screen out of view to the right, animating the x and width properties of a clipRect, 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

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

Creates a transition function for a screen navigator that wipes the old screen up, animating the height property of a clipRect, 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