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

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

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

...s.starY = e.stageY; //添加弹起和移动事件 this.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"...

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

42. Laya.stage.mouseX; Laya.stage.mouseY取到的坐标用来赋给画曲线方法的起点;在左顶点正常,越往右下角起点就越偏移了 [ 72%]

...stage.on(Laya.Event.MOUSE_DOWN, this, this.down2) Laya.stage.on(Laya.Event.MOUSE_UP, this, this.up2) Laya.stage.addChild(this.ps); } down2() { this.a = Laya.stage.mouseX; this.b = Laya.stage.mouseY; console.log("鼠标点击的点" + this.a, this.b) Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mo...

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

43. 鼠标滚轮滚动事件 [ 72%]

鼠标滚轮滚动事件 Laya.Event.MOUSE_DOWN // 左键按下 Laya.Event.MOUSE_UP // 左键抬起 Laya.Event.CLICK // 左键点击 Laya.Event.RIGHT_MOUSE_DOWN // 右键按下 Laya.Event.RIGHT_MOUSE_UP // 右键抬起 Laya.Event.RIGHT_CLICK // 右键单击 Laya.Event.MOUSE_MOVE // 鼠标移动 Laya...

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

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

...eY; 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.off(Event.MOUSE_UP, this, finishScrollText); } /* ...

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

45. 摇杆的多点触摸问题 [ 71%]

...DOWN事件响应得到一个触摸点后 如何在Event.MOUSE_MOVE和Event.MOUSE_UP事件中区分是先前那个触摸点,这点如果不能区分的话,就分不清楚是摇杆的触摸点还是其他按钮的触摸点 2017-03-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

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

46. 超出文本区域的处理&滚动文本(TypeScript-LayaAir基础篇(TS)-文本) [ 71%]

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

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

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

48. Animation组件on绑定的Laya.Event.CLICK无法触发 [ 70%]

...卡片销毁等动画,Animation.on绑定的Laya.Event.CLICK、Laya.Event.MOUSE_UPLaya.Event.MOUSE_DOWN都无法触发。我的card卡片类继承子Laya.Sprite。详细代码见附件,unity转laya萌新一个项目比较急,没有很多学习时间谢谢哪位热心大大看下。 附件 : ...

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

49. layaair js 怎么监听手按住屏幕和松开屏幕事件 [ 70%]

... 非文 赞同来自: laya.events.Event.MOUSE_DOWN 和 laya.events.Event.MOUSE_UP 2016-11-10 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jy02250344 相关问题 【屏幕适配】在LayaAir上面是竖屏,为什么到微信开发...

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

50. list 中的scrollbar [ 70%]

...ween.clearTween(this);         Laya.stage.once(/*laya.events.Event.MOUSE_UP*/"mouseup",this,this.onStageMouseUp2);         Laya.stage.once(/*laya.events.Event.MOUSE_OUT*/"mouseout",this,this.onStageMouseUp2);         Laya.timer.frameLoop(1,this,this.loop);     } // 点击...

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