大约有 97 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(68) Laya2.0_文档(13) Laya3.0_文档(6) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...it(): 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); // 禁用部分交互 //this.map.di...
来源: Laya3.0_文档 发布时间: 20241014
...it(): 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); // 禁用部分交互 //this.map...
来源: Laya2.0_文档 发布时间: 20210714
...) { var blob = 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
...) { var blob = 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
...ter.window.wx.createCanvas().getContext('2d').__proto__; MiniAdpter.window.document.body.appendChild = function () { }; MiniAdpter.EnvConfig.pixelRatioInt = 0; Laya.Browser["_pixelRatio"] = MiniAdpter.pixelRatio(); MiniAdpter._preCreateElement = Laya.Browser.createElement; Laya.Browser[&qu...
来源: Laya_社区 发布时间: 20200103
...arge-------------------------4"); Laya.Browser.window.globalImage = window.document.createElement("img"); console.log("onCharge-------------------------5"); Laya.Browser.window.globalImage.onload=function() { console.log("onCharge-------------------------6"); } console.log("onCharge-----------------...
来源: Laya_社区 发布时间: 20170609
...理,代码如下: //创建原生img对象 let img:any = Laya.Browser.document.createElement("img"); //设置样式 img.style = "position:absolute;left:10;top:10;cursor:pointer;"; //指定资源地址 img.src = Laya.URL.postFormatURL(Laya.URL.formatURL("resources/bg2.png")); //设置img元素的...
来源: Laya3.0_文档 发布时间: 20241014