大约有 208 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)
Laya_社区(145) Laya2.0_文档(21) Laya2.0_示例(11) Laya3.0_文档(9) Laya_示例(9) Laya2.0_api(6) laya_api(6) Laya3.0_api(1)
...失效: 简单代码: var self = this; self.loserPrize.on(Laya.Event.MOUSE_DOWN,self,function(){ self.clickHanlder(); }) Laya.Tween.to(self.loserPrize, { y: Laya.Browser.clientHeight }, Math.random() * 1500); self.gameZone.addChild(self.loserPrize); 大概如上 随手写出来...
来源: Laya_社区 发布时间: 20180222
...容相关的链接 提交 2 个回复 rhizx 赞同来自: 按下:监听mouse_down事件,事件执行缩小的缓动动画 放开:监听mouse_out和mouse_up事件,事件执行还原缓动动画 如果还有点击事件,继续监听click事件即可 2017-04-01 0 0 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20170318
...且 setMouseDownHandler: function (context, handler) { this.on(this.EVENT.MOUSE_DOWN, context, handler); }, setMoveHandler: function (context, handler) { this.on(this.EVENT.MOUSE_MOVE, context, handler); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handle...
来源: Laya_社区 发布时间: 20170316
...待解答... ScrollRect设置会引起其他的UI资源无法正在显示 MOUSE_DOWN 引起的bug grgid.isKinematic设置引起的问题 问题状态 最新活动: 2019-04-27 20:21 浏览: 3931 关注: 3 人 186*****028 • 2019-04-27 22:12 你把ide关了就好, ide的编辑模式 很吃gpu
来源: Laya_社区 发布时间: 20190404
...、mouseOut 就能复现 Enheng • 2022-05-05 17:24 this.sp.on(Laya.Event.MOUSE_DOWN, this, this.text) this.sp.on(Laya.Event.MOUSE_OUT, this,this.text) Enheng • 2022-05-05 17:26 按道理来说,我未移出只做点击动作,应该只执行一遍text(),但是它执行了两遍 Laya_Yan ...
来源: Laya_社区 发布时间: 20220424
...tic function _stageOnFocus():void { _isActive = true; Laya.stage.off(Event.MOUSE_DOWN, null, _stageOnFocus); if (_blurPaused) { if (_tMusic) { playMusic(_tMusic, _musicLoops, _musicCompleteHandler, _musicPosition); } _blurPaused = false; } if(WebAudioSound.ctx.state == "interrupted") { WebAudioSound...
来源: Laya_社区 发布时间: 20171019
touches一直为undefined Laya.stage.on(Laya.Event.MOUSE_DOWN, this, onCtrlMoveRockerTouchDown); ...... function onCtrlMoveRockerTouchDown(e) { console.log("onCtrlMoveRockerTouchDown()"); var touches = e.touches; if(touches) { ...取出前两个touch进行计算 } }...
来源: Laya_社区 发布时间: 20171202
...解决 Panel里头我设置了一组item,每个item注册了mouse_up mouse_down mouse_out,为了做到按下选中,松手不选中的效果。但当这个panel滑动的时候,会触发mouse_out事件,导致item就被设置成不选中的效果。请问如何解决呢? 2018-05-16 添加...
来源: Laya_社区 发布时间: 20180516
...的链接 提交 2 个回复 158*****871 赞同来自: Laya.stage.on(Event.MOUSE_DOWN, this, this.onMouseDown); onMouseDown(e) { const Event = Laya.Event; // 手机上才有 touches 属性 let touches = e.touches; if (touches && touches.length == 2) { preRadian = Math.atan2( touc...
来源: Laya_社区 发布时间: 20190919
鼠标滚轮滚动事件 Laya.Event.MOUSE_DOWN // 左键按下 Laya.Event.MOUSE_UP // 左键抬起 Laya.Event.CLICK // 左键点击 Laya.Event.RIGHT_MOUSE_DOWN // 右键按下 Laya.Event.RIGHT_MOUSE_UP // 右键抬起 Laya.Event.RIGHT_CLICK // 右键单击 Laya.Event.MOUSE_MOVE // 鼠标移动 Laya...
来源: Laya_社区 发布时间: 20180411