大约有 10 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
Ease.backOut 函数里面的参数要怎么自定义,求指导? 2018-03-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 这个可以点进去看源码,然后测试观察结果 201...
来源: Laya_社区 发布时间: 20180327
...参数 现在的Laya.Tween中的ease只传递如: Ease.linearIn, Ease.backOut 等。 以 Ease.backOut 为例, Greensock 的 TweenLite 是通过给 ease 传递 new BackOut(0.8) ,这样,0.8 便可以由用户传递进去,控制BackOut的幅度。 但是 Laya.Tween 的 BackOut ...
来源: Laya_社区 发布时间: 20180409
...容相关的链接 提交 3 个回复 youhong168 赞同来自: shaotianhk backOut () method public static function backOut(t:Number, b:Number, c:Number, d:Number, s:Number = 1.70158):Number开始运动时是朝目标移动,稍微过冲,再倒转方向回来朝着目标。 Parameters t:Number...
来源: Laya_社区 发布时间: 20170105
...过冲越大。 * @return 指定时间的插补属性的值。 */ static backOut(t: number, b: number, c: number, d: number, s?: number): number; 看到可以修改参数值,可是不明白怎么在tween里调用 2017-10-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20171026
...个参数: props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 update这个 数值改变就会触发回调,也就是过程中的回调 2018-01-09 0 1 分享 微博 QZONE 微信 kezhiyu 赞同来...
来源: Laya_社区 发布时间: 20180109
...fsetX; letterText.y = 400; Laya.Tween.from(letterText,{y:100},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和de...
来源: Laya_社区 发布时间: 20180620
... * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀...
来源: Laya_社区 发布时间: 20180425
...象)。 * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调...
来源: Laya_社区 发布时间: 20161205
... 2 个回复 Laya_Aaron 赞同来自: Tween.to(this,{x:40,y:50,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onUpdate)}) 大概长这个样子 2018-07-06 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 如果会用tween 就好办, tween 里面有个 u...
来源: Laya_社区 发布时间: 20180706
... * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为...
来源: Laya_社区 发布时间: 20180621