大约有 36 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0028 秒)
IOS真机下监听MOUSE_MOVE事件会报错 var test = new Laya.Image('img/icon/face.png'); test.x = this.width / 2; test.y = this.height / 2; this.addChild(test); test.on(Laya.Event.MOUSE_MOVE, this, (e) => { console.log(e); }); 监听mouse_move事件后,手指在test上滑动,会报错: ...
来源: Laya_社区 发布时间: 20170806
Laya.Event.MOUSE_MOVE的触发问题 switch (e.type) case Laya.Event.MOUSE_MOVE:有的手机点击就触发move,例如个别oppo机,iphonexr 有的手机点击不触发move,例如iphone12pro 附件 : --> 2021-11-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20211115
请教一下大家监听MOUSE_MOVE的问题 我在监听MOUSE_MOVE的时候做鼠标点击也是可以的,因为我的物体需要依靠MOUSE_MOVE时做移动,但是点击就变成瞬移了,这个如何排除呢? 2018-09-30 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20180930
... 发起人 jo123456 相关问题 请问在2.0版本的js中,如何获取mouse_move的鼠标坐标 关于微信小游戏下的MOUSE_UP事件touches问题 MOUSE_UP事件第一次点击会两次触发,如何解决 Button连续点击触发MOUSE_OUT事件问题 sound manager在MOUSE_OVER事件中无...
来源: Laya_社区 发布时间: 20180414
...MOUSE_UP,this,onUp); } private function onUp():void { Laya.stage.off(Event.MOUSE_MOVE,this,onMove); } private function onDown(e:Event):void { Laya.stage.on(Event.MOUSE_MOVE,this,onMove); } private function onMove():void { // 让sp跟随鼠标移动 sp.x=Laya.stage.mouseX; sp.y=Laya.stage.mouseY; //...
来源: Laya_社区 发布时间: 20170106
...现,不过你可以通过逻辑控制自己封装接口来完成,通过MOUSE_MOVE事件,左右滑动的同时更改tab的selectedIndex值以及view显示即可实现。 2016-08-23 0 0 分享 微博 QZONE 微信 asdf131 赞同来自: { this.on(laya.events.Event.MOUSE_DOWN ,this, this.onMouseDow...
来源: Laya_社区 发布时间: 20160823
...; if(_tip){ _tip.graphics.clear(); _downFlag = false; Laya.stage.off(Event.MOUSE_MOVE,this,_moveHandler); _tip.off(Event.MOUSE_DOWN,this,_downHandler); _tip.off(Event.MOUSE_UP,this,_upHandler); _tip.destroy(); } _tip = new Sprite(); _tip.graphics.drawRect(0,0,100,100,"#FFFFFF"); _tip.size(...
来源: Laya_社区 发布时间: 20190520
....stage.mouseX this.downMouseY = Laya.stage.mouseY Laya.stage.on(Laya.Event.MOUSE_MOVE,this,this.mouseMove) } mouseMove(){ let x = this.offsetX - (Laya.stage.mouseX - this.downMouseX) let y = this.offsetY - (Laya.stage.mouseY - this.downMouseY) this.moveMap(x>0?(x<this.maxX?x:this.maxX):0,y>...
来源: Laya_社区 发布时间: 20181220
...vX = this.txt.mouseX;this.prevY = this.txt.mouseY;Laya.stage.on(Laya.Event.MOUSE_MOVE,this,scrollText);Laya.stage.on(Laya.Event.MOUSE_UP,this,finishScrollText);}/* 停止滚动文本 */function finishScrollText(){Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.scrollText);Laya.stage.off(Laya.Event....
来源: Laya_社区 发布时间: 20180125
...,List 中包含的点击按钮很难点击上,很容易触发 List 的 mouse_move 事件 其他的手机没有这个问题,就三星的手机会 附件 : --> 三星滚动按钮.zip android_studio.zip 2020-11-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20201118