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

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

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

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

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

...{ //初始化引擎 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

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

...(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. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 98%]

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

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

...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)-数据与通信) [ 96%]

...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. 使用百度地图显示当前位置(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 80%]

... ##### 2.1 init函数: ```java function init() { mapDiv = Laya.Browser.createElement("div"); Laya.Browser.document.body.appendChild(mapDiv); // 适应窗口尺寸 refit(); Laya.stage.on(Laya.Event.RESIZE, this, refit); // 初始化地图 map = new BMap.Map(mapDiv); // 禁用部分交互 //map.d...

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

8. 使用百度地图显示当前位置(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 79%]

... init函数: ```java private function init():void { mapDiv = Browser.createElement("div"); Browser.document.body.appendChild(mapDiv);       // 适应窗口尺寸 refit(); Laya.stage.on(Event.RESIZE, this, refit);   // 初始化地图 map = new BMap.Map(mapDiv);   // 禁用部分...

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

9. 使用百度地图显示当前位置(TypeScript-LayaAir基础篇(TS)-硬件设备相关) [ 79%]

...数: ```typescript private  init(): void { this.mapDiv = Laya.Browser.createElement("div"); Laya.Browser.document.body.appendChild(this.mapDiv); // 适应窗口尺寸 this.refit(); Laya.stage.on(Laya.Event.RESIZE, this, this.refit); // 初始化地图 this.map = new this.BMap.Map(this.mapDiv); ...

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

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

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