大约有 17 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0024 秒)
TimeLine.addLabel(label:String, offset:Number):TimeLine 亲测! 方法中第二个参数offset无效 如题,TimeLinde的addLabel方法的第二个参数offset没有实际效果! 1.addLabel方法中的第二个参数 offset 是什么意思 2.to方法中的 offset 又是什么意思,二者...
来源: Laya_社区 发布时间: 20170410
timeLine的问题,怎么在多个addLabel之间改变图片skin? this.timeLine.addLabel("move",0).to(img,ani,500,null,0) .addLabel("ani1",500).to(img,ani1,220,null,0) .addLabel("ani2",220).to(img,ani2,220,null,0) 如上我创建了三个addLabel,但是我想在第一个addLabel完成了,就...
来源: Laya_社区 发布时间: 20180321
...ne = Laya.TimeLine, Event = Laya.Event; this.timeLine = new TimeLine(); // addLabel(label:String, offset:Number) offset: 标签事件相对于上个动画的偏移时间(单位:毫秒) this.timeLine.addLabel("turnRight", 0).to(this.target, {x:450, y:100, scaleX:0.5, scaleY:0.5}, 2000, null, 0) .ad...
来源: Laya2.0_示例 发布时间: 20241118
...ivot(55, 72); target.pos(100,100); } function createTimerLine() { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5},2000,null,0) .addLabel("turnDown",0).to(target,{x:450, y:300, scaleX:0.2, scaleY:1, alpha:1},2000,null,0) .addLabel("turnLeft",0).to(target,{x:100, y:30...
来源: Laya_示例 发布时间: 20241118
...做动画会出问题?var timeline:TimeLine = new TimeLine(); timeline.addLabel("ymove", 0).to(aa, { y:img_tipOver["ey"] }, 500, Ease.cubicInOut) .addLabel("wait",0).to(aa,{},2000) .addLabel("alphas", 0).to(aa, { alpha:0 }, 300, Ease.cubicOut) .addLabel("grid", 0).to(bb, { x:0 }, 300, Ease.cubicIn...
来源: Laya_社区 发布时间: 20170308
...个timeline循环按钮动画 var timeLine = new Laya.TimeLine(); timeLine.addLabel("ZoomIn",0).to(share.btShare,{scaleX:0.9, scaleY:0.9},400,Laya.Tween.cubicOut,0) .addLabel("ZoomOut",0).to(share.btShare,{scaleX:1.0, scaleY:1.0},400,Laya.Tween.cubicOut,0); timeLine.play(0,true); 然后循环创建...
来源: Laya_社区 发布时间: 20180118
...amp;group=Tween&name=TimeLine function createTimerLine() { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5},2000,null,0) .addLabel("turnDown",0).to(target,{x:450, y:300, scaleX:0.2, scaleY:1, alpha:1},2000,null,0) .addLabel("turnLeft",0).to(target,{x:100, y:30...
来源: Laya_社区 发布时间: 20180718
...HMain.max.js:5472) private function createTimerLine():void { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5},2000,null,0) .addLabel("turnDown",0).to(target,{x:450, y:300, scaleX:0.2, scaleY:1, alpha:1},2000,null,0) .addLabel("turnLeft",0).to(target,{x:100, y:30...
来源: Laya_社区 发布时间: 20170327
...的小鱼 赞同来自: var timeLine:TimeLine = new TimeLine(); timeLine.addLabel("turnup",0).to(this,{y:this.y + 20},20,null,0) .addLabel("turndown",0).to(this,{y:this.y - 40},20,null,0) .addLabel("turnup",0).to(this,{y:this.y + 400},20,null,0) .addLabel("turndown",0).to(this,{y:this.y - 40},20,nul...
来源: Laya_社区 发布时间: 20181016
...e:TimeLine=new TimeLine(); timeLine.on(Event.LABEL,this,onLabel); timeLine.addLabel("A",0).to(sp,{rotation:360},700) .addLabel("B",0).to(sp,{scaleY:0.7},200) .addLabel("C",0).to(sp,{scaleY:1},200); timeLine.play(0,false); } private function onLabel(text:String):void { trace(text); }应该是你的...
来源: Laya_社区 发布时间: 20161229