大约有 430 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(250) Laya2.0_api(57) laya_api(53) Laya2.0_文档(29) Laya2.0_示例(15) Laya_示例(13) Laya3.0_文档(11) Laya3.0_api(2)
...ioElement; constructor(){ super(); this.btn_play.on(Laya.Event.CLICK, this, this.onPlay); this.elentAutio = <HTMLAudioElement>document.createElement('audio'); this.elentAutio.src="res/10.mp3"; } onPlay():void{ this.elentAutio.play(); } 由于要播放一些跨...
来源: Laya_社区 发布时间: 20170217
... as Laya.Image; console.log(e); e.on(Laya.Event.CLICK, this, this.onBtnClick); } 按钮事件 private onBtnClick(event:Laya.Event): void { let b = event.currentTarget as Laya.Image; console.log('onClickLevel > ' + b.skin); this.removeSelf(); Laya.stag...
来源: Laya_社区 发布时间: 20190802
...55, 72); ape.pos(200, 200); // 显示默认纹理 switchTexture(); ape.on("click", this, switchTexture); } function switchTexture() { var textureUrl = (flag = !flag) ? texture1 : texture2; // 更换纹理 ape.graphics.clear(); ape.loadImage(textureUrl); var texture = Laya.loader.getRes(textureUrl); ...
来源: Laya2.0_文档 发布时间: 20210715
...6-28 23:26 给 Sprite 中 按键设置name ,然后通过 Sprite.on(Event.CLICK,this,yfqian_GameUi); public function yfqian_GameUi(e:Event):void{ trace("Sprite:",e.target.name) }
来源: Laya_社区 发布时间: 20180627
...is.label.bgColor = "#ff0400"; start(): void { this.color_btn.on(Laya.Event.CLICK, this, this.onTipClick); } if(tipBtn == this.color_btn){ this.label.bgColor = "#ffffff"; 2019-07-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20190722
...sp.autoSize=true; sp.graphics.drawRect(0,0,100,100,"#ff0000"); sp.on(Event.CLICK,this,onClick); Laya.stage.addChild(sp); } private function onClick(event:Event):void{ Render._mainCanvas.source.style.left = "100px"; Render._mainCanvas.source.style.top = "100px"; trace("onClick"); } } } 就这么一...
来源: Laya_社区 发布时间: 20171226
...16 @Laya_XS:我建了一个UI的子类然后写了 this.btn_fapai.on("click", this, this.fapai);、 private function fapai():void { this.btn_kaipai.visible=true; } 没效果啊 cuixueying • 2017-03-18 10:31 看下IDE自动生成的Demo,里面就有用到! h690759643 • 2017-03-18 11...
来源: Laya_社区 发布时间: 20170203
...ateDialog("444",400,400); createDialog("555",500,500); Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { alert(Dialog.manager.numChildren+"");//manager是DialogManager的实例,创建多少个dialog,manager下就有多少的子对象 var dia:Dialog=Dialog.manager.getCh...
来源: Laya_社区 发布时间: 20170606
...一个text ,点 button ,让text 的值改变要如何写,如下: btnclick.js 如下: onAwake(){ this.btn = this.owner; this.btn.on(Laya.Event.CLICK,this,this.cli) } cli(){ /// how to 获得...
来源: Laya_社区 发布时间: 20200412
...册的延时handler不是按照时间调用的----bug 有一个按钮注册CLICK事件以后 会触发两次响应事件 分享:本地自定义事件的注册侦听及发送 问题状态 最新活动: 2018-08-22 22:22 浏览: 1475 关注: 2 人 yangwm • 2018-08-28 11:15 http://ask.layabox.com/qu...
来源: Laya_社区 发布时间: 20180814