大约有 114 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)
...eY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrollText); } /* 停止滚动文本 */ function finishScrollText(e) { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage.off(Event.MOUSE_UP, this, finishScrollText); } /* 鼠标滚动文本 ...
来源: Laya2.0_文档 发布时间: 20210714
...些? 一个是mouseHandler 一个是监听事件的button.on(Laya.Event.MOUSE_UP) 推荐用哪一种? 用button.on的方式是不是窗口关闭了我要手动移除事件? 2016-10-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20161005
...tion(){console.log("mouseout")}); Laya.stage.on(Laya.Event.MOUSE_UP, this, function(){console.log("mouseup")}); mouseup能正常监听到,stage上加的MOUSE_OUT事件,当鼠标移出屏幕时,在浏览器不开device模式下能正常响应,手机上或者浏览器...
来源: Laya_社区 发布时间: 20200407
...aya.stage.on(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Event.MOUSE_UP, this, this.finishScrollText); } /* 停止滚动文本 */ private finishScrollText(e: Event): void { Laya.stage.off(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.off(Event.MOUSE_UP, this, this.finishScrollText...
来源: Laya2.0_文档 发布时间: 20210715
...请问如何解决? 我这样设置的代码: Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse); 在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用thi...
来源: Laya_社区 发布时间: 20180311
...具体实现 }); 在另一个方法里面 Laya.stage.on(Laya.Event.MOUSE_UP, this, function(evt:Laya.Event):void{ console.log("aaaaa = " + evt.tager.name); //这里名字是空的,我想问一下,这里是否可以判断Layer? }); 2018-04-16 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20180416
...nt.MOUSE_DOWN, spe, onMouseDown); Laya.stage.on(Event.MOUSE_UP, this, onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp); } private function onMouseDown(e:Event):void { spe.startDrag(new Rectangle(0,0,800,800)); } 鼠标点...
来源: Laya_社区 发布时间: 20170407
...eContainer.on(Event.MOUSE_DOWN, this, downHandler); gameContainer.on(Event.MOUSE_UP, this, upHandler); } private function moveHandler():void { interactionArea.graphics.drawCircle(Laya.stage.mouseX, Laya.stage.mouseY, 30, "#ff0000"); } private function upHandler():void { trace("KouTu.upHandler()"); /...
来源: Laya_社区 发布时间: 20170315
...:void { //按下,按钮进行缩放 _owner.scale(.8,.8); _owner.on(Event.MOUSE_UP,this,onUp); } private function onUp():void { // 抬起,按钮回复原样 _owner.scale(1,1); _owner.off(Event.MOUSE_UP,this,onUp); } } } H、现在我们的例子已经完成了,我们来看下效果 H-1 设置is...
来源: Laya_社区 发布时间: 20161014
...ollider.active = false; //是否开启debug模式 Laya.stage.on(Laya.Event.MOUSE_UP, this, drawCollider); } function onKeyDown(e) { if (e.keyCode == Laya.Keyboard.UP) this.layaMonkey.transform.translate(this._tempUnitX1); else if (e.keyCode == Laya.Keyboard.DOWN) this.layaMonkey.transform.translate(...
来源: Laya_示例 发布时间: 20241117