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

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

1. MOUSE_DOWNMOUSE_MOVE同时存在,不起作用,哪位大神可以帮忙看看,是为什么 [ 100%]

MOUSE_DOWNMOUSE_MOVE同时存在,不起作用,哪位大神可以帮忙看看,是为什么 附件 : --> farm.zip 2018-09-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 内容相关的链接 提交 1 个回复   赞同来自: 请详细描述...

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

2. MOUSE_DOWN、MOUSE_UP,CLICK [ 95%]

MOUSE_DOWN、MOUSE_UP,CLICK 三个鼠标事件,实现按下,松开,对象缩小和放大,点击事件打开对应界面。 问题:鼠标按下后,移开之后再松开。MOUSE_UP和CLICK都没有触发。导致对象缩小了却没有回归到正常状态。如何解决这问题呢? 2...

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

3. 鼠标交互-双指缩放(多点触控) [ 79%]

...ge.width / 2, Laya.stage.height / 2); Laya.stage.addChild(sp); sp.on(Event.MOUSE_DOWN, this, onMouseDown); } function onMouseDown(e) { var touches = e.touches; if (touches && touches.length == 2) { lastDistance = getDistance(touches); Laya.stage.on(Event.MOUSE_MOVE, this, onMouseMove); } } function ...

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

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

...bgColor = "#000000"; this.ps = new Laya.Sprite(); Laya.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, thi...

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

5. 鼠标交互-双指缩放(多点触控) [ 79%]

...this.sp.pos(Laya.stage.width / 2, Laya.stage.height / 2); this.sp.on(Event.MOUSE_DOWN, this, this.onMouseDown); } onMouseDown(e) { const Event = Laya.Event; // 手机上才有 touches 属性 let touches = e.touches; if (touches && touches.length == 2) { lastDistance = this.getDistance(touches); Laya...

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

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

...享 微博 QZONE 微信 asdf131 赞同来自: { this.on(laya.events.Event.MOUSE_DOWN ,this, this.onMouseDown);         this.on(laya.events.Event.MOUSE_UP ,this, this.onMouseUp);              }     private onMouseDownX : number;     private onMouseDownY : number;     private i...

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

7. MOUSE_UP事件 [ 77%]

...E_UP事件 当我使用 for(var i=0;i<3;i++){ this["_role_"+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不支持对象采用拼接的...

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

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

...中时如何保持点击状态 比如这个打砖块的游戏。用Event.MOUSE_DOWN + startDrag来实现拖动底部的拍子,在电脑上玩时我快速左右拖动来档球,就很容易将鼠标移出舞台,当再移进舞台时,发现拍子不和鼠标走了,需要重新点击,这就...

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

9. 文本-滚动文本 [ 76%]

...ntSize = 20; txt.color = "#ffffff"; Laya.stage.addChild(txt); txt.on(Event.MOUSE_DOWN, this, startScrollText); } /* 开始滚动文本 */ function startScrollText(e) { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finis...

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

10. 文本-滚动文本 [ 75%]

...00"; this.txt.fontSize = 20; this.txt.color = "#ffffff"; this.txt.on(Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ startScrollText(e) { const Event = Laya.Event; prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, this.scrollText); Laya...

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