大约有 41 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...w1114367261: spr.on(Event.MOUSE_DOWN, this, onStartDrag,arr); spr.on(Event.MOUSE_UP,this, onStopDrag,arr);,我就这两个函数,监听spr,这个sprite对象,然后再舞台上死命甩,就有可能会导致up事件不会触发呢,我都要打印,down执行拖拽,up停止拖拽 lengy...
来源: Laya_社区 发布时间: 20180419
...(未超出屏幕范围)会触发哪些事件? MOUSE_DOWN MOUSE_OVER MOUSE_UP? 会触发MOUSE_OUT吗? 因为在LayaIDE里难以模拟手机上的操作,而手机上又看不了打印,所以才问一下。 2018-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20180416
...Slider,使用了Button和ProgressBar来进行实现。监听MOUSE_MOVE和MOUSE_UP、MOUSE_DOWN事件,在网页上面表现一切正常。但是放到原生客户端,在进行滑动的时候,MOUSE_MOVE执行完毕后,直接就执行了MOUSE_UP,导致滑动效果失效。我希望的结果...
来源: Laya_社区 发布时间: 20170601
...E_MOVE, this, onMouseMove); buttonPosition = button.x; Laya.stage.on(Event.MOUSE_UP, this, onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp); } /**移到事件处理*/ function onMouseMove(e) { button.x = Math.max(Math.min(Laya.stage.mouseX, endPosition), beginPosition); } /**抬起事件...
来源: Laya_示例 发布时间: 20241117
...is, 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.button.x = Math.max(Math.min(Laya.stage.mouseX, endPosition), beginPosition); } /**抬起...
来源: Laya2.0_示例 发布时间: 20241117
...应该怎么解决 Panel里头我设置了一组item,每个item注册了mouse_up mouse_down mouse_out,为了做到按下选中,松手不选中的效果。但当这个panel滑动的时候,会触发mouse_out事件,导致item就被设置成不选中的效果。请问如何解决呢? 2018-...
来源: Laya_社区 发布时间: 20180516
...鼠标事件 rect.on(Event.MOUSE_DOWN, this, mouseHandler); rect.on(Event.MOUSE_UP, this, mouseHandler); rect.on(Event.CLICK, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_DOWN, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_UP, this, mouseHandler); rect.on(Event.RIGHT_CLICK, this, mouseHandler); r...
来源: Laya_示例 发布时间: 20241117
...事件 rect.on(Event.MOUSE_DOWN, this, this.mouseHandler); rect.on(Event.MOUSE_UP, this, this.mouseHandler); rect.on(Event.CLICK, this, this.mouseHandler); rect.on(Event.RIGHT_MOUSE_DOWN, this, this.mouseHandler); rect.on(Event.RIGHT_MOUSE_UP, this, this.mouseHandler); rect.on(Event.RIGHT_CLICK, thi...
来源: Laya2.0_示例 发布时间: 20241117
...了了。研究发现,这根本就是能拖动的最大距离。 另外MOUSE_UP这个事件,是要求鼠标在抬起的时候,在控件的响应范围内的是吧。但问题是,没考虑拖动时,控件的位置也跟着变了啊。我拖远之后,抬起鼠标,就不响应MOUSE_UP了...
来源: Laya_社区 发布时间: 20180703
...tion(){console.log("mouseout")}); Laya.stage.on(Laya.Event.MOUSE_UP, this, function(){console.log("mouseup")}); mouseup能正常监听到,stage上加的MOUSE_OUT事件,当鼠标移出屏幕时,在浏览器不开device模式下能正常响应,手机上或者浏览器...
来源: Laya_社区 发布时间: 20200407