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

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

31. 重复背景,全方向地图拖动Demo [ 81%]

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

32. 分享一个虚拟摇杆,比较粗糙,没做优化 [ 79%]

....layer.on(Laya.Event.MOUSE_UP, this, this.upFun); this.layer.on(Laya.Event.MOUSE_MOVE, this, this.moveFun); } //弹起事件 ModeKey.prototype.upFun = function () { this.isDown = false; this.isUp = false; this.isMove = false; this.isMode = "stop"; //移除弹起和移动事件 this.layer.off(Laya.Ev...

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

33. 鼠标事件out ,move 发生再up事件之后 [ 78%]

...定事件  initEvent() {         this.bubbleView.on(Laya.Event.MOUSE_MOVE, this, this.mouseMoveCallback);         this.bubbleView.on(Laya.Event.MOUSE_UP, this, this.mouseUpCallback);         this.bubbleView.on(Laya.Event.MOUSE_OUT, this, this.mouseOutCallback);    ...

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

34. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 78%]

...   mLastMouseY = Laya.stage.mouseY;         Laya.stage.on(Event.MOUSE_MOVE, this, mouseMove);     }      function mouseMove()     {         //移动地图视口         // console.log("X:",mX - (Laya.stage.mouseX - mLastMouseX))         // console.lo...

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

35. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 78%]

...   mLastMouseY = Laya.stage.mouseY;         Laya.stage.on(Event.MOUSE_MOVE, this, mouseMove);     }      function mouseMove()     {         //移动地图视口         // console.log("X:",mX - (Laya.stage.mouseX - mLastMouseX))         // console.lo...

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

36. 超出文本区域的处理&滚动文本(ActionScript-LayaAir基础篇(AS3)-文本) [ 77%]

...:Event):void { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrollText); } /* 停止滚动文本 */ private function finishScrollText(e:Event):void { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage...

来源: Laya2.0_文档 发布时间: 20210715

37. webGL模式下 graphic画线涂鸦,一直不停画会出现线条异常 [ 77%]

...pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; this.bmp.on(Laya.Event.MOUSE_MOVE, this, this.__mouseMove); this.bmp.on(Laya.Event.MOUSE_UP, this, this.__mouseUp); console.log(this.pos0.x); } __mouseMove(e:Event){ this.pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; if(Utils3D.getThis.getDis...

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

38. 按钮旋转 点击区域 [ 77%]

...dler); }, setMoveHandler: function (context, handler) { this.on(this.EVENT.MOUSE_MOVE, context, handler); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handler); },该按钮实现这功能, 按钮旋转后 点击区域不一致 我们使用的 layaair js...

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

39. 超出文本区域的处理&滚动文本(JavaScript-LayaAir基础篇(JS)-文本) [ 76%]

...crollText(e) { prevX = txt.mouseX; prevY = txt.mouseY; 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...

来源: Laya2.0_文档 发布时间: 20210714

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

...候  才监听 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