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

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

41. 关于mouseThough=true的问题 [ 73%]

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

42. laya 为什么不能弹出文件选择框 [ 72%]

... 15:26 浏览: 2455 关注: 3 人 soren • 2018-09-14 15:35 哦 那改成 onclick 看下 click 是jQuery的写法 喵了个咪 • 2018-09-14 15:52 onclick是设置点击调用的函数,现在问题是代码里click已经触发了点击(点击函数执行了),但是不会弹出选择框 喵...

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

43. 分享:IDE使用SWF动画的销毁与反复创建 [ 72%]

...图集的缓存文件             Laya.stage.on(Event.CLICK,this,onClick);         }         private function onClick():void         {             start();//重新加载mc动画         }     } } 附件 : --> Swf_Demo.rar 2017-06-08 添加评论 免费帖...

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

44. 代码创建精灵监听不到事件? [ 72%]

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

45. 按钮失效,同UI里的一个图片超链接点击后再返回,出现按钮失效。 [ 72%]

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

46. 怎么在模拟点击事件 [ 69%]

...时执行了别的点击事件,例如 <button id="button1" onclick="button1();">点击事件1</button> <input accept="image/*" id="file" type="file" /> <script> function button1(){ document.getElementById('file').click(); } ...

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

47. 类似抠图、挖空效果的实现 [ 67%]

...      blue.size(500, 500);             blue.on("click", this, onClick);             Laya.stage.addChild(blue);                          //增加一个容器             box = new Sprite();             //设置容器为画布缓存       ...

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

48. [LayaAir2] 在使用videoDom创建视频元素后iPad跟iPhone中位置不一样 [ 67%]

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

49. 分享:Panel下动态修改子容器宽高并刷新显示! [ 66%]

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

50. 使用webgl之后toDataUrl返回黑色的图像 [ 66%]

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