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

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

1. 启动画面LoadingView(TypeScript-LayaNative原生服务-LayaNative基础文档) [ 100%]

...条 伪代码如下: ```javascript var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { if(window.loadingView){ nPercent+=33; window.loadingView.loading(nPercent); } } image1.src = "a.png"; var image2 = document.createElement('img'); image2.onload=function() { if(...

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

2. LayaAir和原生DOM交互(TypeScript-2D进阶篇(TS)-扩展模块) [ 91%]

...,400); Laya.stage.bgColor = "#ffcccc"; var div:any = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div,{ width:100, height:100 }); var url:string = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,this.clickHandler); this.qrcod...

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

3. LayaAir和原生DOM交互(JavaScript-2D进阶篇(JS)-扩展模块) [ 89%]

...(600,400); Laya.stage.bgColor = "#ffcccc"; var div = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div,{ width:100, height:100 }); var url = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,clickHandler); this.qrcodeSp = new La...

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

4. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 88%]

...{ //初始化引擎 Laya.init(600, 400); var div:Object = Browser.document.createElement("div"); qrcode= new Browser.window.QRCode(div,{ width : 100, height : 100 }); var url:String ="http://layabox.com/"; qrcode.makeCode(url); Laya.stage.once("click",this,clickHandler); qrcodeSp = new Sprite(); Lay...

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

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

...Sample { constructor() { Laya.init(100,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...

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

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

...on(){ function LayaSample(){ Laya.init(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 Lay...

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

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

... public function LayaSample() { Laya.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:* = Browse...

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

8. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 71%]

...lob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` 上面这个方法是...

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

9. 二进制图片(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 70%]

...lob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` 上面这个方法是...

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

10. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 70%]

...lob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` ​ 上面这个方法...

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