大约有 32 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
...ructor() { super(); // 创建Video元素 let videoElmt: any = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElmt); // 设置Video元素地样式和属性 videoElmt.style.zInddex = Laya.Render.canvas.style.zIndex + 1; videoElmt.src = getResURI("video/guide.mp4"); vi...
来源: Laya_社区 发布时间: 20180802
...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
...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
...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
...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
...通过 file:///的方式直接进行访问了 var image = window.document.createElement("img"); image.onload=function() { } image.src="file:///" + conch.getCachePath()+"/test.jpg"; 截图之后还需要 取出来用,我们这个截图是没问题的, 你那个报错是怎么弄的 2018-02-26 0...
来源: Laya_社区 发布时间: 20180224
...t base64 = "你的base64字符串"; let image: HTMLImageElement = document.createElement("img"); let onImageLoaded: EventListenerOrEventListenerObject = () => { image.removeEventListener("load", onImageLoaded); let texture: Texture2D = new Texture2D(); texture.onAsynLoaded(null, image, ); //接...
来源: Laya_社区 发布时间: 20180518
...域。 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
...nvas.toDataURL("image/png"); var _webframe:*; _webframe = Browser.document.createElement("img"); _webframe.setAttribute('src', base64String); //_webframe.setAttribute('frameborder', 0); _webframe.setAttribute('width', "100%"); _webframe.setAttribute('height', "100%"); //_webframe.setAttribute('align...
来源: Laya_社区 发布时间: 20180103
...nputElement() { Laya.Input['_initInput'](Laya.Input['area'] = Laya.Browser.createElement("textarea")); Laya.Input['_initInput'](Laya.Input['input'] = Laya.Browser.createElement("input")); Laya.Input['inputContainer'] = Laya.Browser.createElement("div"); Laya.Input['inpu...
来源: Laya_社区 发布时间: 20200103