大约有 27 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0028 秒)
...参数 现在的Laya.Tween中的ease只传递如: Ease.linearIn, Ease.backOut 等。 以 Ease.backOut 为例, Greensock 的 TweenLite 是通过给 ease 传递 new BackOut(0.8) ,这样,0.8 便可以由用户传递进去,控制BackOut的幅度。 但是 Laya.Tween 的 BackOut ...
来源: Laya_社区 发布时间: 20180409
...stage.height - dialog.height)/2; Laya.Tween.to(dialog,{y:yy},600,Laya.Ease.backOut); },[],false); this.gameHelpDialog = new view.GameHelpDialog(); 2017-11-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 5 个回复 Monica -...
来源: Laya_社区 发布时间: 20171114
... Laya.Tween.to(this.obj,{scaleY:1.05,scaleX:1.05},100,Laya.Ease.backOut,Laya.Handler.create(this,this.clickEnd)); } this.obj.on(Laya.Event.CLICK,this,this.init); } return BtnFeed; })(); //实例化上面的类 _proto.getFeedBtn = function(){ ...
来源: Laya_社区 发布时间: 20170301
...。 props:Object — 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 duration:int — 花费的时间,单位毫秒。 ease:Function (default = null) — 缓动类型,默认为匀速运动。 comp...
来源: laya_api 发布时间: 20170929
...对象)。 props: any 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 duration: number 花费的时间,单位毫秒。 Default value ease: Function | null = null 缓动类型,默认为匀速运动。 Def...
来源: Laya3.0_api 发布时间: 20231115
...。 props:Object — 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 duration:int — 花费的时间,单位毫秒。 ease:Function (default = null) — 缓动类型,默认为匀速运动。 comp...
来源: Laya2.0_api 发布时间: 20190513
...ya.Handler.create(point,function(){ this.visible = true; })},800,Laya.Ease.backOut,null,i*400); timeline在一开始还在正常执行, 当有一半左右的ui元素进入到场景时, timeline循环卡住不动了, 等所有ui动画执行完毕, timeline又开始运动 2018-01-18 添加...
来源: Laya_社区 发布时间: 20180118
...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
...容相关的链接 提交 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
...c 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...
来源: Laya_社区 发布时间: 20180507