大约有 6 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0022 秒)
...mouseHandler); rect.on(Event.MOUSE_OUT, this, mouseHandler); rect.on(Event.DOUBLE_CLICK, this, mouseHandler); rect.on(Event.MOUSE_WHEEL, this, mouseHandler); } /** * 鼠标响应事件处理 */ function mouseHandler(e) { switch (e.type) { case Event.MOUSE_DOWN: appendText("\n————————...
来源: Laya_社区 发布时间: 20180205
.../ 鼠标经过目标 Laya.Event.MOUSE_OUT // 鼠标移出目标 Laya.Event.DOUBLE_CLICK // 鼠标左键双击 Laya.Event.MOUSE_WHEEL // 鼠标滚轮滚动 请教下,滚轮滚动怎么判断是上滚动还是下滚动? 2018-04-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20180411
... Event.MOUSE_DOWN, Event.MOUSE_UP, Event.MOUSE_MOVE, Event.CLICK, Event.DOUBLE_CLICK, Event.RIGHT_CLICK, Event.RIGHT_MOUSE_DOWN, Event.RIGHT_MOUSE_UP, Event.MOUSE_OVER, Event.MOUSE_OUT, Event.MOUSE_WHEEL ]); static isMouseEvent(type) { r...
来源: Laya_社区 发布时间: 20231106
... 浏览: 1440 关注: 2 人 cuixueying • 2017-02-09 10:04 引擎有Event.DOUBLE_CLICK方法 Todo • 2017-02-09 09:38 恩好的,谢谢雪莹姐, 我试试看!
来源: Laya_社区 发布时间: 20170208
... (isLeft && isDouble){ this.sendEvents(sendArr,/*laya.events.Event.DOUBLE_CLICK*/"doubleclick",touchID); } this.removeTouchFromArr(touchID,preDowns); preO.tar=null; Pool.recover("TouchData",preO); } preO=this.getTouchFromArr(touchID,this.preOvers); if (!preO){ }else { if ...
来源: Laya_社区 发布时间: 20180529
...义 doubleclick 事件对象的 type 属性值。*/ static DOUBLE_CLICK: string; /** 定义 change 事件对象的 type 属性值。*/ static CHANGE: string; /** 定义 changed 事件对象的 type 属性值。*/ static CHANG...
来源: Laya_社区 发布时间: 20170601