Paket | spark.effects.easing |
Klass | public class EaseInOutBase |
Arv | EaseInOutBase Object |
Implementerar | IEaser |
Underklasser | Power, Sine |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
The <s:EaseInOutBase>
tag
inherits all of the tag attributes of its of its superclass,
and adds the following tag attributes:
<s:EaseInOutBase id="ID" easeInFraction="0.5" />
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
easeInFraction : Number
The percentage of an animation that should be spent accelerating. | EaseInOutBase |
Metod | Definieras med | ||
---|---|---|---|
EaseInOutBase(easeInFraction:Number = NaN)
Constructor. | EaseInOutBase | ||
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 | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
Metod | Definieras med | ||
---|---|---|---|
Returns a value that represents the eased fraction during the
ease in phase of the animation. | EaseInOutBase | ||
Returns a value that represents the eased fraction during the
ease out phase of the animation. | EaseInOutBase |
easeInFraction | egenskap |
easeInFraction:Number
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
The percentage of an animation that should be spent accelerating.
This factor sets an implicit
"easeOut" parameter, equal to (1 - easeIn
), so that any time not
spent easing in is spent easing out. For example, to have an easing
equation that spends half the time easing in and half easing out,
set easeIn
to .5.
Valid values are between 0.0 and 1.0.
Standardvärdet är .5.
Implementering
public function get easeInFraction():Number
public function set easeInFraction(value:Number):void
EaseInOutBase | () | Konstruktor |
public function EaseInOutBase(easeInFraction:Number = NaN)
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Constructor.
ParametrareaseInFraction:Number (default = NaN ) — 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.
|
ease | () | metod |
public function ease(fraction:Number):Number
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Takes the fraction representing the elapsed duration of an animation
(a value between 0.0 to 1.0) and returns a new elapsed value.
This value is used to calculate animated property values.
By changing the value of the elapsed fraction, you effectively change
the animation of the property.
For EaseInOutBase, this method calculates the eased fraction
value based on the easeInFraction
property. If
fraction
is less than easeInFraction
,
this method calls the easeIn()
method. Otherwise it
calls the easeOut()
method.
It is expected
that these functions are overridden in a subclass.
Parametrar
fraction:Number — The elapsed fraction of the animation.
|
Number — The eased fraction of the animation.
|
easeIn | () | metod |
protected function easeIn(fraction:Number):Number
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Returns a value that represents the eased fraction during the ease in phase of the animation. The value returned by this class is simply the fraction itself, which represents a linear interpolation of the fraction. More interesting behavior is implemented by subclasses of EaseInOutBase.
Parametrar
fraction:Number — The fraction elapsed of the easing in phase
of the animation, between 0.0 and 1.0.
|
Number — A value that represents the eased value for this
phase of the animation.
|
easeOut | () | metod |
protected function easeOut(fraction:Number):Number
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Returns a value that represents the eased fraction during the ease out phase of the animation. The value returned by this class is simply the fraction itself, which represents a linear interpolation of the fraction. More interesting behavior is implemented by subclasses of EaseInOutBase.
Parametrar
fraction:Number — The fraction elapsed of the easing out phase
of the animation, between 0.0 and 1.0.
|
Number — A value that represents the eased value for this
phase of the animation.
|
Tue Jun 12 2018, 01:40 PM Z