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

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

11. 鼠标交互-滑动 [ 89%]

...{ const Event = Laya.Event; //添加鼠标移到侦听 Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove); buttonPosition = this.button.x; Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } /**移到事件处理*/ onMouseMove(e) { this.b...

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

12. 文本-滚动文本 [ 88%]

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

来源: Laya_示例 发布时间: 20241117

13. 文本-滚动文本 [ 88%]

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

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

14. 鼠标交互-鼠标交互 [ 88%]

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

来源: Laya_示例 发布时间: 20241117

15. 2D物理-碰撞过滤器 [ 87%]

...,自己实现,可以实现更大程度的控制 // Laya.stage.on(Event.MOUSE_MOVE, this, this.mouseMove); // Laya.stage.on(Event.MOUSE_UP, this, this.mouseUp); // Laya.stage.on(Event.MOUSE_OUT, this, this.mouseUp); // let rigidbody = this.curTarget.getComponent(RigidBody); // rigidbody.type = "k...

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

16. 鼠标交互-鼠标交互 [ 87%]

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

17. tab 是否可以做到左右滑动切换view呢? [ 87%]

...现,不过你可以通过逻辑控制自己封装接口来完成,通过MOUSE_MOVE事件,左右滑动的同时更改tab的selectedIndex值以及view显示即可实现。 2016-08-23 0 0 分享 微博 QZONE 微信 asdf131 赞同来自: { this.on(laya.events.Event.MOUSE_DOWN ,this, this.onMouseDow...

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

18. 手机MOUSE_MOVE事件 [ 87%]

手机MOUSE_MOVE事件 帮忙看下在手机端,按下,移动一段距离,在抬起,选中的元素有问题,有点问题,非手机模式下,怎么鼠标一经过,就抬起了。不知这种写法是否正确。 附件 : --> Desktop.zip 2017-01-03 添加评论 免费帖 --> 分享 ...

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

19. 监听MOUSE_MOVE的时候怎么能获取鼠标的偏移量呢? [ 87%]

监听MOUSE_MOVE的时候怎么能获取鼠标的偏移量呢? 2018-01-23 3 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 手动 2018-01-23 0 0 分享 微博 QZONE 微信 为什么被折...

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

20. 点击拖动图片,当鼠标移出再移回舞台中时如何保持点击状态 [ 85%]

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