大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(51) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...素 let videoElement = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zIndex = Laya.Render.canvas.style.zIndex + 1; videoElement.src = "res/av/mov_bbb.mp4"; videoElement.controls = true; // 阻止IO...
来源: Laya2.0_示例 发布时间: 20241118
...素 var videoElement = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zInddex = Laya.Render.canvas.style.zIndex + 1; videoElement.src = "../../res/av/mov_bbb.mp4"; videoElement.controls = true; // ...
来源: Laya_示例 发布时间: 20241118
...Browser._container.id="layaContainer"; Browser.document.body.appendChild(Browser._container); } return Browser._container; },function(value){ Browser._container=value; }); 20...
来源: Laya_社区 发布时间: 20170419
...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); ``` 怎么运行上边这段代码呢?打开谷歌浏览器,随便打开一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就能看到上面截图的效果。...
来源: Laya2.0_文档 发布时间: 20210714
ios上input无法隐藏 var z_file = Laya.Browser.document.createElement("input"); //创建input var f_file = Laya.Browser.document.createElement("input"); //创建input z_file.style="filter:alpha(opacity=0);opacity:0;width: 29%;height:11%;"; ...
来源: Laya_社区 发布时间: 20171128
...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); ``` 怎么运行上边这段代码呢?打开谷歌浏览器,随便打开一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就能看到上面截图的效果。...
来源: Laya2.0_文档 发布时间: 20210715
... Browser.createElement("div"); div.setAttribute("id", "videobox"); Browser.document.body.appendChild(div); // var canvas:* = Browser.getElementById("layaCanvas") // canvas.appendChild(videoElement) videoElement = Browser.createElement("video"); div.appendChild(videoElement); // Browser.document.body...
来源: Laya_社区 发布时间: 20180313
...ler); } private function clickHandler():void { var iframe:Object = Browser.document.createElement("iframe"); iframe.style.position ="absolute";//设置布局定位。这个不能少。 iframe.style.zIndex = 100;//设置层级 iframe.style.left ="100px"; iframe.style.top ="100px"; iframe.src = "http:...
来源: Laya_社区 发布时间: 20180223
...uot;www.layabox.com"; p.y = 200; 方法 2 var iframe = Browser.window.document.createElement('iframe'); iframe.setAttribute('src','www.layabox.com'); var body =Browser.window.document.getElementsByTagName("body")[0]; body.appendChild(iframe); 都没有反应 ?也没有崩溃? cuix...
来源: Laya_社区 发布时间: 20170522
...w(); } 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._vie...
来源: Laya_社区 发布时间: 20240304