• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 131 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)

31. 鼠标交互-鼠标交互 [ 78%]

...ndler); rect.on(Event.RIGHT_CLICK, this, this.mouseHandler); rect.on(Event.MOUSE_MOVE, this, this.mouseHandler); rect.on(Event.MOUSE_OVER, this, this.mouseHandler); rect.on(Event.MOUSE_OUT, this, this.mouseHandler); rect.on(Event.DOUBLE_CLICK, this, this.mouseHandler); rect.on(Event.MOUSE_WHEEL, thi...

来源: Laya2.0_示例 发布时间: 20241117

32. MOUSE事件和移动端的Touch事件如何对应 [ 77%]

...有刻度的Slider,使用了Button和ProgressBar来进行实现。监听MOUSE_MOVE和MOUSE_UP、MOUSE_DOWN事件,在网页上面表现一切正常。但是放到原生客户端,在进行滑动的时候,MOUSE_MOVE执行完毕后,直接就执行了MOUSE_UP,导致滑动效果失效。我希...

来源: Laya_社区 发布时间: 20170601

33. laya可以支持滑动手势吗 [ 75%]

...,亦没有光标一说,如果你想做滑动手势,,,可以监听Mouse_MOVE事件,在移动的时候改变光标(移动端可以让显示对象跟随鼠标移动)显示! 2017-06-17 0 0 分享 微博 QZONE 微信 ohkei - as3、as2、h5 赞同来自: 手势识别主要会用到以下...

来源: Laya_社区 发布时间: 20170617

34. 请问有没有方法能够获取“鼠标是否处于按下状态”? [ 75%]

...候  才监听 move事件的话! onMouseDown  中 Laya.stage.on(Event.MOUSE_MOVE, this, onMouseMove); onMouseUp  中   Laya.stage.off(Event.MOUSE_MOVE, this, onMouseMove); 也可以写个变量  ,down的时候为true,否则为false  如"cuixueying"  回答的一样! 2017-04-21 3 0 ...

来源: Laya_社区 发布时间: 20170421

35. MOUSE_UP事件 [ 74%]

..._"+i].on(Event.MOUSE_DOWN,this,this.clickDown) ; this["_role_"+i].on(Event.MOUSE_MOVE,this,this.clickMove); // this["_role_"+i].on(Event.MOUSE_UP,this,this,clickUp); }这样的方式添加监听时,MOUSE_UP不支持对象采用拼接的形式监听?MOUSE_DOWN和MOUSE_MOVE是没有问题的。 20...

来源: Laya_社区 发布时间: 20180116

36. laya拖拽在部分机型(一部XR)StageX不对 [ 73%]

...n(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:       this.drag.x = e.stageX;       this.drag.y = e.stageY;   ...

来源: Laya_社区 发布时间: 20230619

37. 自动旋转后残影 [ 73%]

...; 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

38. 关于新手引导 [ 71%]

...d { trace("KouTu.upHandler()"); // box.stopDrag(); gameContainer.off(Event.MOUSE_MOVE, this, moveHandler); } private function downHandler():void { trace("KouTu.downHandler()"); // box.startDrag(); gameContainer.on(Event.MOUSE_MOVE, this, moveHandler); } } } 我实现的是刮刮奖模式        ...

来源: Laya_社区 发布时间: 20170315

39. 循环添加一组按钮事件无法正常使用 [ 69%]

...nt.MOUSE_DOWN, this, mouseHandler);                 b.on(Event.MOUSE_MOVE, this, mouseHandler);                 b.on(Event.MOUSE_UP, this, mouseHandler);                 trace("addEvent");             }         }         private function mouse...

来源: Laya_社区 发布时间: 20170517

40. layaAir真的没办法做涂鸦板? [ 69%]

...,this,function(e){ arr.push([e.stageX,e.stageY]); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,bb) }) Laya.stage.on(Laya.Event.MOUSE_UP,this,function(){ Laya.stage.off(Laya.Event.MOUSE_MOVE,this,bb) }) function bb(e){ s.graphics.clear(); arr[arr.length-1].push(e.stageX); arr[arr.length-1].push(e.stageY)...

来源: Laya_社区 发布时间: 20180510