大约有 6 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
...新进度条。 伪代码如下: 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(wi...
来源: Laya3.0_文档 发布时间: 20241024
...址。具体的逻辑代码如下: 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.qrcodeS...
来源: Laya3.0_文档 发布时间: 20241014
...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(); 上面这个方法是用...
来源: Laya3.0_文档 发布时间: 20230303
...f (!Browser._container) { Browser.__init__(); Browser._container = Browser.createElement("div"); Browser._container.id = "layaContainer"; Browser._document.body.appendChild(Browser._container); } return Browser._container; } static set container(value: any) { Browser._container = value; } 3.1 docume...
来源: Laya3.0_文档 发布时间: 20241014
...域。 2.1 init函数: 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); ...
来源: Laya3.0_文档 发布时间: 20241014
...码如下: //创建原生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元素的属性 img...
来源: Laya3.0_文档 发布时间: 20241014