大约有 111 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
Laya_社区(93) Laya2.0_文档(5) Laya3.0_api(4) Laya3.0_文档(3) Laya2.0_示例(2) Laya2.0_api(2) laya_api(1) Laya_示例(1)
...var img:Image = new Image("fish_6.png"); img.on(Event.CLICK,this,onClick); img.mouseThrough = true; Laya.stage.addChild(img); } 代码就这么简单,图片我传到附件里面 shiyang • 2018-03-14 15:55 private function onClick(e:Event):void{ trace("xxxxxxx"); }
来源: Laya_社区 发布时间: 20180314
... 15:26 浏览: 2455 关注: 3 人 soren • 2018-09-14 15:35 哦 那改成 onclick 看下 click 是jQuery的写法 喵了个咪 • 2018-09-14 15:52 onclick是设置点击调用的函数,现在问题是代码里click已经触发了点击(点击函数执行了),但是不会弹出选择框 喵...
来源: Laya_社区 发布时间: 20180914
...图集的缓存文件 Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { start();//重新加载mc动画 } } } 附件 : --> Swf_Demo.rar 2017-06-08 添加评论 免费帖...
来源: Laya_社区 发布时间: 20170608
...ageRoom.map_storageData[0][0],tag:0}; box.on(Laya.Event.MOUSE_UP,this,this.onclick,[arr]); var _proto = StorageUILayer.prototype; _proto.onclick = function(params){ console.log("--------------------------------hhhhhhhhhhh- "); } ---------------------------------------------------------- 麻...
来源: Laya_社区 发布时间: 20171113
...Left.on(Laya.Event.CLICK,null,function(){ //TO GamePage2 console.log("left onclick"); Laya.stage.addChild(new GameView); }); //分享快乐 this.StartRight.on(Laya.Event.CLICK,null,function(){ //超链接 onLink(href); }); //天猫Logo this.img_TianMao.on(Laya.Event.CLICK,null,function(){ //超...
来源: Laya_社区 发布时间: 20180810
...时执行了别的点击事件,例如 <button id="button1" onclick="button1();">点击事件1</button> <input accept="image/*" id="file" type="file" /> <script> function button1(){ document.getElementById('file').click(); } ...
来源: Laya_社区 发布时间: 20180228
... blue.size(500, 500); blue.on("click", this, onClick); Laya.stage.addChild(blue); //增加一个容器 box = new Sprite(); //设置容器为画布缓存 ...
来源: Laya_社区 发布时间: 20161122
...o:Laya.HtmlVideo; constructor() { Laya.stage.on(Laya.Event.CLICK,this,this.onClick); } onClick(){ this.initVideo(); } initVideo() { this.htmlvideo = new Laya.HtmlVideo(); this.htmlvideo.setSource("https://www.layaair.com/3.x/de ... ot%3B,1); this.htmlvideo.video.addEventListener("loadedmetadata",()=...
来源: Laya_社区 发布时间: 20240305
...(btnAdd); btnAdd.x=550; btnAdd.label='ADD1000'; btnAdd.on(Event.CLICK,this,onClick,[sp,panel]); } private function onClick(sp:Sprite,panel:Panel):void { trace('Add1000'); for(var i:int=0;i<1000;i++) { var button:Button=new Button('button-4.png'); button.label='button:'+i; sp.addChild(button); but...
来源: Laya_社区 发布时间: 20170601
...tat.show(); Laya.stage.bgColor = "#ffcccc"; Laya.stage.on(Event.CLICK,this,onClick); sp= new Sprite(); sp.name='base'; sp.loadImage("logo.png"); Laya.stage.addChild(sp); } private function onClick():void { var htmlsss:String=(Laya.stage.getChildAt(0) as Sprite).drawToCanvas(100,100,0,0).getCanvas()....
来源: Laya_社区 发布时间: 20170523