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

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

81. Tween动画中的Sprite点击事件失效 [ 59%]

...失效: 简单代码: 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

82. 使用缓动动画点击按钮缩小,放开鼠标还原怎么弄 [ 59%]

...容相关的链接 提交 2 个回复 rhizx 赞同来自: 按下:监听mouse_down事件,事件执行缩小的缓动动画 放开:监听mouse_out和mouse_up事件,事件执行还原缓动动画 如果还有点击事件,继续监听click事件即可 2017-04-01 0 0 分享 微博 QZONE 微信 ...

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

83. 按钮旋转 点击区域 [ 58%]

...且 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

84. GPU引起的卡顿 [ 58%]

...待解答... 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

85. 鼠标事件监听 异常触发mouseout [ 58%]

...、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

86. 接听电话后,播放音效无反应,播放音乐可以 [ 58%]

...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

87. touches一直为undefined [ 58%]

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

88. Panel滑动的时候会触发moveout事件,不希望他触发的话应该怎么解决 [ 57%]

...解决 Panel里头我设置了一组item,每个item注册了mouse_up  mouse_down mouse_out,为了做到按下选中,松手不选中的效果。但当这个panel滑动的时候,会触发mouse_out事件,导致item就被设置成不选中的效果。请问如何解决呢? 2018-05-16 添加...

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

89. 移动端h5项目如何获取多点触摸的坐标 [ 57%]

...的链接 提交 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

90. 鼠标滚轮滚动事件 [ 57%]

鼠标滚轮滚动事件 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