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

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

11. IDE-显示IDE创建的界面 [ 94%]

...,代码里面能直接使用,并且有代码提示 this.btn.on(Event.CLICK, this, onBtnClick); this.btn2.on(Event.CLICK, this, onBtn2Click); function onBtnClick() { //手动控制组件属性 this.radio.selectedIndex = 1; this.clip.index = 8; this.tab.selectedIndex = 2; this.combobox.selectedInd...

来源: Laya2.0_示例 发布时间: 20200319

12. 上层图层怎么传递事件给下层的图层 [ 93%]

...层怎么传递事件给下层的图层 两个图层重叠的话,都on("click") 2018-01-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Monica - 知识达人 赞同来自: 不是很明白你说的意思,能...

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

13. 三个图好像无法绑定不同的事件? [ 92%]

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

14. sprite点击事件 位置便宜 [ 92%]

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

15. Laya中textinput的监听事件的执行顺序是FOCUS=>MOUSE_DOWN=>CLICK,有没有比FOCUS还要先触发的监听 [ 92%]

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

16. 怎么实现在同一个sprite上绑定多个click事件? [ 92%]

怎么实现在同一个sprite上绑定多个click事件? Laya.stage.on('click',null,function(){alert(11111)}).on('click',null,function(){alert(2222)}),这不是我想要的,我想实现点击两次舞台弹出不同的值,第一次点击舞台弹出111,再点击一下弹出222,并不是点击一...

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

17. 计时器-延迟执行 [ 91%]

...button1.height - vGap) / 2; Laya.stage.addChild(button1); button1.on(Event.CLICK, this, onDecreaseAlpha1); button2 = createButton("点我60帧之后 alpha - 0.5"); button2.pos(button1.x, button1.y + vGap); Laya.stage.addChild(button2); button2.on(Event.CLICK, this, onDecreaseAlpha2); } function crea...

来源: Laya_示例 发布时间: 20241117

18. 图片添加点击事件 有的不生效 [ 91%]

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

19. 计时器-延迟执行 [ 91%]

...Laya.stage.height - this.button1.height - vGap) / 2; this.button1.on(Event.CLICK, this, this.onDecreaseAlpha1); this.button2 =this. createButton("点我60帧之后 alpha - 0.5"); this.button2.pos(this.button1.x, this.button1.y + vGap); this.button2.on(Event.CLICK, this, this.onDecreaseAlpha2); } cre...

来源: Laya2.0_示例 发布时间: 20241117

20. 图片像素精准点击问题! [ 90%]

...测像素点颜色值来判断点击区域,这里不能用 on(Laya.Event.CLICK,只能通过 on(Laya.Event.MOUSE_DOWN 来检测。   下面是我的代码处理: class demo { private down:Laya.Image; constructor() { // 鼠标事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); ...

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