大约有 81 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(54) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...(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
...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
... 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
... } private iframe: any = Laya.Browser.document.createElement("iframe"); private _view: HTMLDivElement = document.createElement("div"); public Show(): void { Laya.Browser.document.body.appendChild(this._view); this._view.appendCh...
来源: Laya_社区 发布时间: 20240304
...生 window 对象的引用。BrowserPublic Methods MethodDefined By createElement(type:String):*[static] 创建浏览器原生节点。 Browser getElementById(type:String):*[static] 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Browser now():Number[static] 获取...
来源: laya_api 发布时间: 20170929
.../ TODO Auto Generated method stub // 创建Video元素 var div:* = Browser.createElement("div"); div.setAttribute("id", "videobox"); Browser.document.body.appendChild(div); // var canvas:* = Browser.getElementById("layaCanvas") // canvas.appendChild(videoElement) videoElement = Browser.createElement...
来源: Laya_社区 发布时间: 20180313
...生 window 对象的引用。BrowserPublic Methods MethodDefined By createElement(type:String):*[static] 创建浏览器原生节点。 Browser getElementById(type:String):*[static] 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Browser now():Number[static] 获取...
来源: Laya2.0_api 发布时间: 20190513
...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
...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
...址。具体的逻辑代码如下: 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