大约有 430 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
Laya_社区(250) Laya2.0_api(57) laya_api(53) Laya2.0_文档(29) Laya2.0_示例(15) Laya_示例(13) Laya3.0_文档(11) Laya3.0_api(2)
... = soundButton.y; Laya.stage.addChild(musicButton); soundButton.on(Event.CLICK, this, this.onPlaySound); musicButton.on(Event.CLICK, this, this.onPlayMusic); } private createButton(label: string): Sprite { var w: number = 110; var h: number = 40; var button: Sprite = new Sprite(); button.size(...
来源: Laya_社区 发布时间: 20190421
...;#ff0000"); box.hitArea = area; box.mouseEnabled = true; box.on("click", this, onBoxClick); autoSize可以自动计算宽高,但是由于该方法的计算量比较大,会导致性能问题,开发者可以直接去调,但请适当使用,掉了autoSize就不需要设置size...
来源: Laya_社区 发布时间: 20161221
...pbox(options); } reader.readAsDataURL(this.files[0]); }) $('#btnCrop').on('click', function(){ var img = cropper.getDataURL(); //$('.cropped').append('<img src="'+img+'">'); }) } 如果直接在ts里面写,报错,那么如果放在js里面。。如何通过ts调用呢?? 2018-01-01 添...
来源: Laya_社区 发布时间: 20180101
...000; mc.height=700; mc.on("click", this, onAniClick); trace("mcwidth:"+mc.width+"mcheight:"+mc.height); // mc.on(Event.LOADED,this,onComp); // mc.on(Event.COM...
来源: Laya_社区 发布时间: 20170804
...hare.y = this.Move2d.y; this.SceneMajor.addChild(share); share.btShare.on('click',this,function(){ // Laya.SoundManager.playSound(SfxPool.btPress, 1, null); this.SceneShareDark(); }); share.btSignUp.on('click',this, SignUp_Func); var timeLine = new Laya.TimeLine(); timeLine.addLabel("ZoomIn",0).to(s...
来源: Laya_社区 发布时间: 20180118
...关注: 3 人 yyqx1122 • 2018-04-17 10:51 代码如下: Laya.stage.on('click', this, function(){ console.log('click'); Laya.stage.mouseEnabled = false; }) 我给Laya.stage绑定了鼠标事件,然后我将Laya.stage.mouseEnabled手动设置为false,这个时候Laya.stage应该是不接收鼠...
来源: Laya_社区 发布时间: 20180416
... let _pause:boolean = false; btn1.on(Laya.Event.CLICK,this,()=>{ if(!_pause)return; sound.pause(); _pause = false }) btn2.on(Laya.Event.CLICK,this,()=>{ ...
来源: Laya_社区 发布时间: 20200921
... Laya.stage.bgColor = "#ffffff"; Laya.stage.on(Event.CLICK, this, play); } function play():void { Laya.timer.loop(5000, this, function():void { playDragonBonesAnimation("BigAward/BigAwar...
来源: Laya_社区 发布时间: 20170406
...里必须手动设置尺寸,才能生效 _sprite.size(200,200); on(Event.CLICK,this,function():void{ trace("click"); }); } override public function get width():Number{ return _sprite.width; } override public function get height():Number{ return _sprite.height; } } } 2017-01-24 1 条评论 免费...
来源: Laya_社区 发布时间: 20170124
UI编辑器里按钮事件 onClick怎么使用 UI编辑器里按钮事件 onClick怎么使用? 我在onClick框里填 "toLogin",toLogin是一个续承于该页面相对应生成的View类的子类里的一个function。 在我实际运行时一点击该按钮,就报出 "toLogin is not defined" ...
来源: Laya_社区 发布时间: 20171205