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

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

21. 用JS原生态window.location.href跳转 [ 79%]

...FF00"); Laya.stage.addChild(sp); sp.size(1000,100); sp.on(Event.CLICK,this,onClick); } private function onClick():void { Browser.window.location.href="https://www.baidu.com"; } 2016-12-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 hu...

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

22. laya.utils.Stat [ 79%]

...octreeNodeCulling : int = 0[static] 八叉树节点剔除次数。Stat  onclick : Function[static] [write-only] 点击性能统计显示区域的处理函数。 Stat  renderBatches : int = 0[static] 渲染批次。Stat  renderSlow : Boolean = false[static] 表示当前使用的是否为慢渲...

来源: Laya2.0_api 发布时间: 20190513

23. laya.utils.Stat [ 79%]

...loopCount : int = 0[static] 主舞台 Stage 渲染次数计数。 Stat  onclick : Function[static] [write-only] 点击性能统计显示区域的处理函数。 Stat  renderSlow : Boolean = false[static] 表示当前使用的是否为慢渲染模式。Stat  shaderCall : int = 0[static] 着色...

来源: laya_api 发布时间: 20170929

24. 怎么给button绑定一个事件,比如console.log一段话 [ 78%]

...博 QZONE 微信 LT 赞同来自: var btn:Button;btn.on(Event.CLICK, this, onClick); private function onClick():void { console.log(); } 基本就是这个套路加响应事件=。= 官方demo含糊不清的看得累 2018-07-18 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 ...

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

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

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

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

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

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

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

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

28. 怎么在模拟点击事件 [ 72%]

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

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

29. 分享:截屏! [ 72%]

...nvas区域进行截屏             Laya.stage.on(Event.CLICK,this,onClick);             //随意绘制显示对象             sp= new Sprite();             sp.loadImage("logo.png");             Laya.stage.addChild(sp);         }            ...

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

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

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