• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 23 项符合查询结果, 库内数据总量为 30,724 项。 (搜索耗时: 0.0067 秒)

1. Ease.elasticOut如何自定义参数,直接设置的话会变成number [ 100%]

Ease.elasticOut如何自定义参数,直接设置的话会变成number 之前论坛有人问,但是官方并没有给出明确解释啊~~... 附件 : --> 2018-01-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回...

来源: Laya_社区 发布时间: 20180104

2. 缓动 · LayaAir3.0文档 · LAYABOX [ 97%]

...性300运动,每次执行缓动效果需要3000毫秒,缓类型采用elasticOut函数方式,延迟间隔i*100毫秒执行。 Laya.Tween.from(letterText,{y:100},3000,Laya.Ease.elasticOut,null,i*1000); } } //创建单个字符文本,并加载到舞台 private createLetter(char:string):Laya.Tex...

来源: Laya3.0_文档 发布时间: 20230726

3. 缓动动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 93%]

... letterText.y = 300; //Laya.Tween.from(letterText,{y:100},3000,Laya.Ease.elasticOut,null,i*1000);//注释本行改为将Laya.Tween.from改变为Laya.Tween.to Laya.Tween.to(letterText, { y : 100 }, 3000, Laya.Ease.elasticOut, null, i * 1000); ``` 运行效果如动图3所示 ![动图3.gif](img/3.gif)...

来源: Laya2.0_文档 发布时间: 20210715

4. 缓动动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 93%]

...性 letterText.y = 300; //Tween.from(letterText, { y : 100 }, 3000, Ease.elasticOut, null, i * 1000);//注释本行改为将Tween.from改变为Tween.to Tween.to(letterText, { y : 100 }, 3000, Ease.elasticOut, null, i * 1000); ``` 运行效果如动图3所示 ![动图3.gif](img/3.gif)(动图3) ...

来源: Laya2.0_文档 发布时间: 20210715

5. 问一下tween的一些参数怎么设置 [ 91%]

...设置 比如 Laya.Tween.from(this,{scaleX:0.5,scaleY:0.5},1000,Laya.Ease.elasticOut); 我可以修改elasticOut的回弹次数和回弹时间么? 2016-09-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixue...

来源: Laya_社区 发布时间: 20160913

6. 鼠标交互-自定义事件 [ 89%]

...ion onRotate(newAngle) { Tween.to(sp, { "rotation": newAngle }, 1000, Ease.elasticOut); } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import Ease = Laya.Ease; import Tween = Laya.Tween; import WebGL = Laya.WebGL...

来源: Laya_示例 发布时间: 20240930

7. 多个tween会影响其它精灵事件 [ 89%]

...因,   Laya.Tween.to(curBoxObj.resLeft, { scaleY: 1 }, 500, Laya.Ease.elasticOut); Laya.Tween.to(curBoxObj.resRight, { scaleY: 1 }, 500, Laya.Ease.elasticOut); Laya.Tween.to(curBoxObj, { y: curBox.y }, 500, Laya.Ease.elasticOut);   我只要执行下面这句,上面的resRight就播放不了...

来源: Laya_社区 发布时间: 20180510

8. 鼠标交互-自定义事件 [ 88%]

..., Ease = Laya.Ease; Tween.to(this.sp, { "rotation": newAngle }, 1000, Ease.elasticOut); } } new Interaction_CustomEvent();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import Ease = Laya.Ease; import Tween = Laya.Tween...

来源: Laya2.0_示例 发布时间: 20240930

9. 缓动动画(JavaScript-LayaAir基础篇(JS)-动画基础) [ 81%]

...erText.y = 100; //Laya.Tween.from(letterText, { y : 100 }, 3000, Laya.Ease.elasticOut, null, i * 1000);//注释本行改为将Laya.Tween.from改变为Laya.Tween.to Laya.Tween.to(letterText, { y : 300 }, 1000, Laya.Ease.elasticOut, null, i * 100); ``` #### 3.5 理解ease参数 第四个参数ease对...

来源: Laya2.0_文档 发布时间: 20210715

10. laya.utils.Ease_API3.0 [ 78%]

...ircIn circInOut circOut cubicIn cubicInOut cubicOut elasticIn elasticInOut elasticOut expoIn expoInOut expoOut linearIn linearInOut linearNone linearOut quadIn quadInOut quadOut quartIn quartInOut quartOut quintIn quintInOut quintOut sineIn sineInOut sineOut strongIn strongInOut strongOut Methods St...

来源: Laya3.0_api 发布时间: 20231115