大约有 141 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0042 秒)
Laya_社区(108) Laya2.0_示例(10) Laya_示例(9) Laya3.0_api(4) laya_api(3) Laya2.0_api(3) Laya3.0_文档(2) Laya2.0_文档(2)
...rt resume setStartTime to clear clearAll from to Properties repeat repeat: number = 1 Defined in laya/utils/Tween.ts:38 重播次数,如果repeat=0,则表示无限循环播放 update update: Handler Defined in laya/utils/Tween.ts:36 更新回调,缓动数值发生变化时,回调变化的值...
来源: Laya3.0_api 发布时间: 20231115
...同来自: shaotianhk backOut () method public static function backOut(t:Number, b:Number, c:Number, d:Number, s:Number = 1.70158):Number开始运动时是朝目标移动,稍微过冲,再倒转方向回来朝着目标。 Parameters t:Number — 指定当前时间,介于 0 和持续时间...
来源: Laya_社区 发布时间: 20170105
...果的次数和时间,即缓动效果的幅度。 static elasticOut(t: number, b: number, c: number, d: number, a?: number, p?: number): number; 我看这个是有参数可以控制的,但是在tween中怎么使用这些参数? cuixueying • 2016-09-22 22:10 /** * 以较快速度开始运动...
来源: Laya_社区 发布时间: 20160913
...值。 */ public static function cubicOut(t:Number, b:Number, c:Number, d:Number):Number { return c * ((t = t / d - 1) * t * t + 1) + b; } 你可以直接向这个方法里传值 2018-05-03 1 0 分享 微博 QZONE 微信 为什么被折...
来源: Laya_社区 发布时间: 20180503
...动文本 private createTween():void{ //"LayaBox字符串总宽度" var w:number = 800; //文本创建的起始位置(>>在此使用右移运算符,相当于/2 用>>效率更高) var offsetX:number = Laya.stage.width - w >> 1; //显示的字符串 var demoString:string = "LayaBox"; var letterText:...
来源: Laya2.0_文档 发布时间: 20210715
...时间轴动画的类。 Public Properties PropertyDefined By scale : Number = 1 缩放动画播放的速度。TimeLine total : int[read-only] 得到总帧数。 TimeLinePublic Methods Hide Inherited Public Methods Show Inherited Public Methods MethodDefined By addLabel(label:String, offs...
来源: laya_api 发布时间: 20170929
...时间轴动画的类。 Public Properties PropertyDefined By scale : Number = 1 缩放动画播放的速度。TimeLine total : int[read-only] 得到总帧数。 TimeLinePublic Methods Hide Inherited Public Methods Show Inherited Public Methods MethodDefined By addLabel(label:String, offs...
来源: Laya2.0_api 发布时间: 20190513
...象属性的渐变。 Public Properties PropertyDefined By progress : Number[write-only] 设置当前执行比例Tween update : Handler更新回调,缓动数值发生变化时,回调变化的值TweenPublic Methods MethodDefined By clear():void 停止并清理当前缓动。 Tween ...
来源: laya_api 发布时间: 20170929
...象属性的渐变。 Public Properties PropertyDefined By progress : Number[write-only] 设置当前执行比例Tween repeat : int = 1重播次数,如果repeat=0,则表示无限循环播放Tween update : Handler更新回调,缓动数值发生变化时,回调变化的值TweenPublic...
来源: Laya2.0_api 发布时间: 20190513
...rn 指定时间的插补属性的值。 */ public static function circIn(t:Number, b:Number, c:Number, d:Number):Number { return -c * (Math.sqrt(1 - (t /= d) * t) - 1) b; } 2018-04-09 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Yan...
来源: Laya_社区 发布时间: 20180408