包 | fl.motion |
类 | public class FunctionEase |
继承 | FunctionEase Object |
实现 | ITween |
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
另请参见
属性 | 定义方 | ||
---|---|---|---|
constructor : Object
对类对象或给定对象实例的构造函数的引用。
| Object | ||
easingFunction : Function = null
对带有 (t, b, c, d) 签名的函数的引用,类似 fl.motion.easing 类中的方法。
| FunctionEase | ||
functionName : String
缓动函数的完全限定名称,如 fl.motion.easing.Bounce.easeOut()。
| FunctionEase | ||
parameters : Array = null
要作为附加参数传递给缓动函数的值的数组(可选)。
| FunctionEase | ||
prototype : Object
[static]
对类或函数对象的原型对象的引用。
| Object | ||
target : String
要作为目标的动画属性的名称。
| FunctionEase |
方法 | 定义方 | ||
---|---|---|---|
FunctionEase(xml:XML = null)
FunctionEase 实例的构造函数。
| FunctionEase | ||
使用指定的缓动函数计算动画数值属性的插补值。
| FunctionEase | ||
指示对象是否已经定义了指定的属性。
| Object | ||
指示 Object 类的实例是否在指定为参数的对象的原型链中。
| Object | ||
指示指定的属性是否存在、是否可枚举。
| Object | ||
设置循环操作动态属性的可用性。
| Object | ||
返回指定对象的字符串表示形式。
| Object | ||
返回指定对象的原始值。
| Object |
easingFunction | 属性 |
public var easingFunction:Function = null
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
对带有 (t, b, c, d)
签名的函数(如 fl.motion.easing 类中的方法)的引用。
另请参见
functionName | 属性 |
functionName:String
[read-write]
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
缓动函数的完全限定名称,如 fl.motion.easing.Bounce.easeOut()
。 该函数必须是某个类的一个方法(Bounce、Cubic、Elastic、另一个类)。 如果 Flash Player 无法找到该类,将引发异常。
public function get functionName():String
public function set functionName(value:String):void
另请参见
parameters | 属性 |
public var parameters:Array = null
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
要作为附加参数传递给缓动函数的值的数组(可选)。
target | 属性 |
target:String
[read-write]
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
要作为目标的动画属性的名称。
public function get target():String
public function set target(value:String):void
另请参见
FunctionEase | () | 构造函数 |
public function FunctionEase(xml:XML = null)
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
FunctionEase 实例的构造函数。
参数xml:XML (default = null ) — 一个可选 E4X XML 实例。
|
另请参见
getValue | () | 方法 |
public function getValue(time:Number, begin:Number, change:Number, duration:Number):Number
语言版本 : | ActionScript 3.0 |
Player 版本 : | Flash Player 9.0.28.0 |
使用指定的缓动函数计算动画数值属性的插补值。 如果 parameters
数组已经事先设置,则在除了 time、begin、change 和 duration 值以外,上述值也将传递给缓动函数。
参数
time:Number — 时间值,必须介于 0 和 duration 之间(包括二者)。 您可以选择任何单位(例如,帧、秒、毫秒),但您的选择必须与 duration 的单位匹配。
|
|
begin:Number — 当时间为 0 时,补间开始的动画属性值。
|
|
change:Number — 补间过程中,动画属性值的变化。 该值可以为正,也可以为负。 例如,如果对象从 90 度旋转到 60 度,则 change 为 -30。
|
|
duration:Number — 补间的时间长度。 必须大于零。 您可以选择任何单位(例如,帧、秒、毫秒),但您的选择必须与 time 的单位匹配。
|
Number — 指定时间的插补值。
|
import fl.motion.Animator; //// These two lines must be added to use <FunctionEase> import fl.motion.easing.*; // import the easing classes fl.motion.easing.Back; // add a reference to every easing class you want to use //// var mc2_xml:XML = <Motion duration="30" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*"> <source> <Source frameRate="30" x="85.05" y="90.05" scaleX="0.999" scaleY="0.999" rotation="0" elementType="movie clip" instanceName="mc2" symbolName="BoxSymbol" linkageID="Box" class="Box"> <dimensions> <geom:Rectangle left="-39" top="-52" width="77" height="97"/> </dimensions> <transformationPoint> <geom:Point x="0.5019480519480519" y="0.5010309278350515"/> </transformationPoint> </Source> </source> <Keyframe index="0"> <tweens> <FunctionEase functionName="fl.motion.easing.Back.easeInOut"/> </tweens> </Keyframe> <Keyframe index="29" x="330" y="0"/> </Motion>; var mc2_animator:Animator = new Animator(mc2_xml, mc2); mc2_animator.play();
当前页: http://livedocs.adobe.com/flash/9.0_cn/ActionScriptLangRefV3/fl/motion/FunctionEase.html