Packagespark.effects.easing
Classpublic class Sine
InheritanceSine Inheritance EaseInOutBase Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 4
Runtime Versions : Flash Player 10, AIR 1.5

The Sine class defines easing functionality using a Sine function. Easing consists of two phases: the acceleration, or ease in phase, followed by the deceleration, or ease out phase. Use the easeInFraction property to specify the percentage of an animation accelerating.

MXML SyntaxexpandedHide MXML Syntax

The <s:Sine> tag inherits all of the tag attributes of its of its superclass, and adds the following tag attributes:

  <s:Sine
    id="ID"
   />
  


Public Properties
 PropertyDefined By
 InheritedeaseInFraction : Number
The percentage of an animation that should be spent accelerating.
EaseInOutBase
Public Methods
 MethodDefined By
  
Sine(easeInFraction:Number = 0.5)
Constructor.
Sine
 Inherited
ease(fraction:Number):Number
Takes the fraction representing the elapsed duration of an animation (a value between 0.0 to 1.0) and returns a new elapsed value.
EaseInOutBase
Protected Methods
 MethodDefined By
 Inherited
easeIn(fraction:Number):Number
Returns a value that represents the eased fraction during the ease in phase of the animation.
EaseInOutBase
 Inherited
easeOut(fraction:Number):Number
Returns a value that represents the eased fraction during the ease out phase of the animation.
EaseInOutBase
Constructor Detail
Sine()Constructor
public function Sine(easeInFraction:Number = 0.5)

Language Version : ActionScript 3.0
Product Version : Flex 4
Runtime Versions : Flash Player 10, AIR 1.5

Constructor.

Parameters
easeInFraction:Number (default = 0.5) — Sets the value of the easeInFraction property. The default value is EasingFraction.IN_OUT, which eases in for the first half of the time and eases out for the remainder.