大约有 63 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0028 秒)
... _this._stage.event(/*laya.events.Event.MOUSE_OUT*/"mouseout",_this._event.setTo(/*laya.events.Event.MOUSE_OUT*/"mouseout",_this._stage,_this._stage)); break ; case "mouseover": ...
来源: Laya_社区 发布时间: 20170614
... sp.on(Event.MOUSE_OVER,this,onMouse); sp.on(Event.MOUSE_OUT,this,onMouse); Laya.stage.addChild(sp); Stat.show(); } private function onMouse(event:Event):void{ trace(event...
来源: Laya_社区 发布时间: 20170920
...this.onStageMouseUp2); Laya.stage.once(/*laya.events.Event.MOUSE_OUT*/"mouseout",this,this.onStageMouseUp2); Laya.timer.frameLoop(1,this,this.loop); } // 点击之后出发的是mousedown事件, 这里直接是this.event("end")的 2020-11-18 0 0 分享 微博 ...
来源: Laya_社区 发布时间: 20201118
...出事件 LayaNative2.6版本中,在ios设备上不会触发Laya.Event.MOUSE_OUT事件 2020-05-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 个回复被折叠 要回复问题请先登...
来源: Laya_社区 发布时间: 20200521
... /** * 对象的 <code>Event.MOUSE_OVER、Event.MOUSE_OUT、Event.MOUSE_DOWN、Event.MOUSE_UP、Event.CLICK</code> 事件侦听处理函数。 * @param e Event 对象。 */ protected function onMouse(e:Event):void { ...
来源: Laya_社区 发布时间: 20170926
...IGHT_MOUSE_DOWN, Event.RIGHT_MOUSE_UP, Event.MOUSE_OVER, Event.MOUSE_OUT, Event.MOUSE_WHEEL ]); static isMouseEvent(type) { return MOUSE_EVENTS.has(type); }脚本周期函数onMouseDrag, onMouseDragEnd在不注册鼠标事件的情况下无...
来源: Laya_社区 发布时间: 20231106
...his, this.mouseUpCallback); this.bubbleView.on(Laya.Event.MOUSE_OUT, this, this.mouseOutCallback); // this.bubbleView.on(Laya.Event.MOUSE_DOWN, this, this.mouseDownCallback); } 然后,鼠标down 0.5秒,松开,就会出现如下的顺序 mouseUpC...
来源: Laya_社区 发布时间: 20191122
...age.on(Event.MOUSE_MOVE, Laya.stage.on(Event.MOUSE_UP, Laya.stage.on(Event.MOUSE_OUT, 2017-06-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jison_ailin 相关问题 看了其他引擎才发现 LAYA 真的太太太太好用了!...
来源: Laya_社区 发布时间: 20170617
...on(Laya.Event.MOUSE_UP, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_OUT, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseEvent); //鼠标yi'dong private onMouseEvent(e: Laya.Event): void { switch (e.type) { case Laya.Event.MOUSE_MOVE: ...
来源: Laya_社区 发布时间: 20230619
...意思? Content.once(Event.CLICK,this,OnMouseDown); Content.once(Event.MOUSE_OUT,this,OnMouseDown); Laya.stage.once(Event.FRAME,this,onEnterFrame); 这样事件都监听不到? Laya_Aaron • 2018-06-11 17:52 你描述的我也不懂是什么意思,只能推测意思。 黄进 • 2018-06-11 2...
来源: Laya_社区 发布时间: 20180611