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

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

61. 模拟鼠标事件 [ 67%]

...100 Y150 时,执行你那个事件回调函数即可 Laya.stage.on(Event.MOUSE_MOVE,this,onMouseMove); private function onMouseMove():void { if(Laya.stage.mouseX == 100 && Laya.stage.mouseY == 150) { //在这里调你想要执行的事件回调函数即可 } } Playerdata1 • 2017-06-08 10...

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

62. 关于大量绘制 draw的性能优化问题 [ 67%]

...Layer); drawLayer.width = 800; drawLayer.height = 1030; drawLayer.on(Event.MOUSE_MOVE, this, mousemove); function  mousemove(e) {     drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff")     drawLayer.cacheAsBitmap; }   我的思路是每一次move都把对应的圆形...

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

63. Event.CLICK和Event.MOUSE_UP [ 66%]

...求教Event.KEY_DOWN和Event.MOUSE_DOWN调用window.open相关问题 Event.MOUSE_MOVE 事件的问题 问题状态 最新活动: 2016-11-29 20:38 浏览: 1740 关注: 2 人 daohu • 2016-11-30 10:31 好的,我说的就是:Mouse_UP事件没有问题,Event.CLICK好像有问题,既然会改,...

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

64. 发布微信后无法触发mouse_up事件 [ 65%]

...on(Laya.Event.MOUSE_UP, this, this.mouseHandler); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseHandler); } private mouseHandler(e:laya.events.Event):void { var touches: Array<any> = e.touches; if (touches) { for(let i=0;i<touches.length;i++){ let t =touches[i]; let nameIndex =e.touc...

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

65. 请问如何获取触屏上两个或者更多位置的坐标 [ 64%]

...].stageX - touches[1].stageX);                 Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove);             }         }         private onMouseMove(e: Event): void {             var touches: Array<any> = e.touches;             if (touches &&...

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

66. 关于多点触控e.touches问题 [ 62%]

...ent.MOUSE_DOWN, this, onCtrlMoveRockerTouchDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, onCtrlMoveRockerTouchDown);     function onCtrlMoveRockerTouchDown(e) {    console.log("onCtrlMoveRockerTouchDown()");    this.ctrlMoveRockerPosX = undefined;    this.ctrlMoveRockerPosY = undefined; ...

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

67. 图片像素精准点击问题! [ 62%]

...n(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouseUp, [true]); } /** 按钮动画处理 */ private hitTest(t: Laya.Image) { let s = t.source.getPixels(t.mouseX, t.mouseY, 1, 1).join('')...

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

68. Laya.stage.on的Mouse事件,正常情况下没问题,但是Laya.stage.pos移动后就失灵了,请问如何解决? [ 62%]

...ge.on(Laya.Event.MOUSE_DOWN, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse); 在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用this.onMouse事件了,请问如何解决? 2018-03-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

69. 关于微信小游戏下的MOUSE_UP事件touches问题 [ 61%]

...么?微信小游戏环境下的手指事件用MOUSE_UP和MOUSE_EVENTMOUSE_MOVE对不对?   ================================================================================= 问题最后解决了,微信上确实存在onTouchEnd时touches数组包含了已经抬起的手指touch信息,但...

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

70. laya怎么实现视差滚动效果? [ 61%]

...p://m.etao.com/go/market/etao/wndtb-2014.php 我想了一下,使用Event.MOUSE_MOVE很难判断手指在触摸屏上下往复拖动的情况,谁提供个思路? 2017-05-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 ...

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