Language Version : | ActionScript 3.0 |
Player Version : | Flash Player 9.0.28.0 |
The Linear class defines easing functions to implement
non-accelerated motion with ActionScript animations.
Its methods all produce the same effect, a constant motion.
The various names
easeIn
,
easeOut
and so on,
are provided in the interest of polymorphism.
public static function easeIn(t:Number, b:Number, c:Number, d:Number):Number
Language Version : | ActionScript 3.0 |
Player Version : | Flash Player 9.0.28.0 |
The easeIn()
method defines a constant motion
with no acceleration.
Parameters
| t:Number — Specifies the current time, between 0 and duration inclusive.
|
|
| b:Number — Specifies the initial value of the animation property.
|
|
| c:Number — Specifies the total change in the animation property.
|
|
| d:Number — Specifies the duration of the motion.
|
Returns
| Number — The value of the interpolated property at the specified time.
|
See also
public static function easeInOut(t:Number, b:Number, c:Number, d:Number):Number
Language Version : | ActionScript 3.0 |
Player Version : | Flash Player 9.0.28.0 |
The easeInOut()
method defines a constant motion
with no acceleration.
Parameters
| t:Number — Specifies the current time, between 0 and duration inclusive.
|
|
| b:Number — Specifies the initial value of the animation property.
|
|
| c:Number — Specifies the total change in the animation property.
|
|
| d:Number — Specifies the duration of the motion.
|
Returns
| Number — The value of the interpolated property at the specified time.
|
See also
public static function easeNone(t:Number, b:Number, c:Number, d:Number):Number
Language Version : | ActionScript 3.0 |
Player Version : | Flash Player 9.0.28.0 |
The easeNone()
method defines a constant motion
with no acceleration.
Parameters
| t:Number — Specifies the current time, between 0 and duration inclusive.
|
|
| b:Number — Specifies the initial value of the animation property.
|
|
| c:Number — Specifies the total change in the animation property.
|
|
| d:Number — Specifies the duration of the motion.
|
Returns
| Number — The value of the interpolated property at the specified time.
|
See also
public static function easeOut(t:Number, b:Number, c:Number, d:Number):Number
Language Version : | ActionScript 3.0 |
Player Version : | Flash Player 9.0.28.0 |
The easeOut()
method defines a constant motion
with no acceleration.
Parameters
| t:Number — Specifies the current time, between 0 and duration inclusive.
|
|
| b:Number — Specifies the initial value of the animation property.
|
|
| c:Number — Specifies the total change in the animation property.
|
|
| d:Number — Specifies the duration of the motion.
|
Returns
| Number — The value of the interpolated property at the specified time.
|
See also
© 2004-2007 Adobe Systems Incorporated. All rights reserved.
Tue Mar 18 2008, 12:59 PM GMT-07:00