大约有 104 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0097 秒)
Laya_社区(72) Laya2.0_文档(9) Laya3.0_api(7) Laya_示例(5) Laya2.0_示例(4) laya_api(3) Laya2.0_api(3) Laya3.0_文档(1)
... Event = Laya.Event; var List = Laya.List; var Browser = Laya.Browser; var Ease = Laya.Ease; var Handler = Laya.Handler; var Tween = Laya.Tween; var WebGL = Laya.WebGL; var character; var duration = 2000; var tween; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); ...
来源: Laya_示例 发布时间: 20241118
...public init(): void { Laya.Tween.to(this.kaishi_btn, { y: 200 }, 800, Laya.Ease.backOut, Laya.Handler.create(this, this.onLogoCompete)); } onLogoCompete(): void { Laya.Tween.to(this.biaoti_lable, { y: 120 }, 800, Laya.Ease.backOut); } onStart(): void { Laya.Tween.to(this.kaishi_btn, { y: 400 }, 800,...
来源: Laya_社区 发布时间: 20180507
...到原因, 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
...值的对象)。 * @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
...id { Laya.Tween.to(this,{y:Laya.stage.height,alpha:0},200,Laya.Ease.linearIn); } import { ui } from "./ui/layaMaxUI"; export default class ShopDialog extends ui.ShopDialogUI { constructor() { super(); this.popupEffect = Laya.Handler.create(this, this.showEffect); t...
来源: Laya_社区 发布时间: 20190121
...te:Laya.Handler.create(point,function(){ this.visible = true; })},800,Laya.Ease.backOut,null,i*400); timeline在一开始还在正常执行, 当有一半左右的ui元素进入到场景时, timeline循环卡住不动了, 等所有ui动画执行完毕, timeline又开始运动 2018-01-18 ...
来源: Laya_社区 发布时间: 20180118
...structor Properties _extra _singleton autoDestroyAtComplete delay duration ease eventName owner repeat runInEditor scriptPath target Accessors awaked destroyed enabled hideFlags id Methods _initialize _setOwner destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRende...
来源: Laya3.0_api 发布时间: 20231115
...structor Properties _extra _singleton autoDestroyAtComplete delay duration ease eventName owner repeat runInEditor scriptPath target Accessors awaked destroyed enabled hideFlags id Methods _initialize _setOwner destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRende...
来源: Laya3.0_api 发布时间: 20231115
...ween.to Laya.Tween.to(this.arrowImg, {"rotation": destination}, 4000, Laya.Ease.cubicOut, Handler.create(this, ()=> { })); 如何控制Laya.Ease.cubicOut的速度 2018-05-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1...
来源: Laya_社区 发布时间: 20180503
...; // 守护神设置呼吸 Laya.Tween.to(this.angel,{scaleY:0.99},900,Laya.Ease.linearInOut,Handler.create(this,this.angelTween1)); // 飞艇设置浮动 Laya.Tween.to(this.aeroboat,{y:-data.aeroboat[aeroboatLel].h-8},800,Laya.Ease.linearInOut,Handler.create(this,this.aeroboatTween1)); })); this.add...
来源: Laya_社区 发布时间: 20170720