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

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

151. 怎么获取手机相册内容 [ 67%]

...置一致,这里我们默认在0点位置; var file:Object = Browser.document.createElement("input"); //设置file的样式 file.style="filter:alpha(opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式...

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

152. 打包后启动游戏后报错 [ 67%]

...ipt:* = Browser.createElement("script"); script.id = "serverlist"; Browser.document.head.appendChild(script); script.src = url; script.type = "get"; Browser.window[callbackName] = callback; //loading Main.tl.startLoad(); } private function callback(data:*):void { //移除 var script:* = Browser.getE...

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

153. JSONP跨域读取数据(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 67%]

...,100); var script:any = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static onComplete():void{ console.log("JSONP执行到这里"); } } new LayaSample(); ``` ```java var script:any = Laya.Browser.createEleme...

来源: Laya2.0_文档 发布时间: 20210715

154. JSONP跨域读取数据(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 67%]

...(100,100); var script = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } LayaSample.onComplete = function(){ console.log("JSONP执行到这里"); } return LayaSample; })(); new LayaSample(); ``` ```java var script = La...

来源: Laya2.0_文档 发布时间: 20210715

155. viewport:调用init之后,引擎会强制把html的viewport覆盖掉 [ 67%]

...t'){meta.content=content;flag=true;break;}i++;}; /*__JS__ */if(!flag){meta=document.createElement('meta');meta.name='viewport',meta.content=content;document.getElementsByTagName('head')[0].appendChild(meta);}; 我直接注释掉laya.core.js里的这3行 貌似可以了

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

156. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 67%]

...aya.init(100,100); var script:* = Browser.createElement("script"); Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static function onComplete():void{ trace("JSONP执行到这里"); } } } ``` ```java var script:* = Browser.createElement("script");//这...

来源: Laya2.0_文档 发布时间: 20210714

157. 按时间清理Laya.pool中缓存对象, 游戏大厅缓存问题 [ 67%]

...wugs • 2018-06-11 11:53 private loadJs(jsPAth, fun) { var new_element1 = document.createElement("script");//创建新的script节点 new_element1.setAttribute("type", "text/javascript"); // new_element1.setAttribute("src", jsPAth); //LayaNative不支持 new_...

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

158. 游戏铺满固定大小容器,火狐和谷歌正常,edge会有滚动条? [ 66%]

...回复 Laya_Aaron 赞同来自: 题主已经自行解决了,直接设置 document.body.style.overflow="hidden";超出截断,没有滚动条了 2019-05-16 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 这个浏览器层面的滚动条,与引擎是无关的。 2019-05-14 0 4 分享 微...

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

159. 如果作大型LAYA AS项目,有可能支持module技术么 [ 66%]

...s\src",编译后的module.js生成均只有以下内容  (nction(window,document,Laya){     var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; })(window,document,Laya); 2017-02-09 0 0 分享 微博 QZONE 微信 joe51586 赞同...

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

160. 使用/*[COMPILER OPTIONS:normal]*/来编译分包无法生成Dictionary类的定义 [ 66%]

...','aa'); trace(a.get('test')); } } }生成的分包test.js(function(window,document,Laya){ var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; var Stage=laya.display.Stage,TestAA=aa.TestAA; //class test.AAA var AAA=(function(){ functio...

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