大约有 250 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
this.btClose1.on(Laya.Event.CLICK,null,this.close);报错 this.btClose1.on(Laya.Event.CLICK,null,this.close); 这句代码报错 附件 : --> 2017-06-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueyin...
来源: Laya_社区 发布时间: 20170619
Animation组件on绑定的Laya.Event.CLICK无法触发 我想实现一个卡片点击然后跟随鼠标移动。卡片的显示我是用Animation做的为了方便以后卡片销毁等动画,Animation.on绑定的Laya.Event.CLICK、Laya.Event.MOUSE_UP、Laya.Event.MOUSE_DOWN都无法触发。我...
来源: Laya_社区 发布时间: 20180811
Laya的on(Laya.Event.Click)无法打开新窗口 一个控件使用on(Laya.Event.Click)监听时,无法在监听函数中使用window.open,会被拦截,有没有什么比较好的办法解决呢? 2017-06-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20170617
关于button的click监听 let btn:Laya.Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");}); 请问 这样监听不到button的点击事件吗?如果我创建一个ui.view a a.on 也...
来源: Laya_社区 发布时间: 20171128
...层怎么传递事件给下层的图层 两个图层重叠的话,都on("click") 2018-01-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Monica - 知识达人 赞同来自: 不是很明白你说的意思,能...
来源: Laya_社区 发布时间: 20180109
...monkey2.png',100,100,90,90); Laya.stage.addChild(img1); img1.on(Laya.Event.CLICK,this, function(name){ console.log(name);},['图1']); var img2 = new Laya.Sprite(); img2.loadImage('https://layaair.ldc.layabox.com/demo/h5/res/apes/monkey2.png',200,300,90,90); Laya.stage.addChild(img2); img2.on(Laya.Ev...
来源: Laya_社区 发布时间: 20180621
... 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); rect.on(Event.MOUSE_MOVE, this, mouseHandler)...
来源: Laya_社区 发布时间: 20180205
Laya中textinput的监听事件的执行顺序是FOCUS=>MOUSE_DOWN=>CLICK,有没有比FOCUS还要先触发的监听 this.textinput_message.on(Laya.Event.CLICK,this,()=>{ console.log("CLICK>>>"); }) this.textinput_message.on(Laya.Event.MOUSE_DOWN,this,()=>{ console.log("MOUSE_DO...
来源: Laya_社区 发布时间: 20190315
怎么实现在同一个sprite上绑定多个click事件? Laya.stage.on('click',null,function(){alert(11111)}).on('click',null,function(){alert(2222)}),这不是我想要的,我想实现点击两次舞台弹出不同的值,第一次点击舞台弹出111,再点击一下弹出222,并不是点击一...
来源: Laya_社区 发布时间: 20171211
...vate init():void { //添加点击事件处理 this.v_btn_boy.on(Laya.Event.CLICK, this, this.onClickBtnBoy); this.v_btn_friend.on(Laya.Event.CLICK, this, this.onClickBtnFriend); this.v_btn_shop.on(Laya.Event.CLICK, this, this.onClickBtnShop); console.log("init main scene"); } //点击羁绊 private ...
来源: Laya_社区 发布时间: 20180312