大约有 51 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
...(str); } function ShowDiv(str) { var _this = this; this.AppConfirm = document.getElementById("AppConfirm"); if (this.AppConfirm == null) { this.AppConfirm = document.createElement("div"); document.body.appendChild(this.AppConfirm); this.AppConfirm.id = "AppConfirm"; } this.modlueDiv = docume...
来源: Laya_社区 发布时间: 20181214
...素 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"); videoElmt.controls = false; videoElmt.a...
来源: Laya_社区 发布时间: 20180802
...vascript" src="main.js"></script> <script> var gameCanvas = document.getElementById("layaCanvas"); if ((sys.platform !== sys.DESKTOP_BROWSER)) { gameCanvas.style.position = "fixed"; } else { gameCanvas.style.position = "static"; } html5Full.toLandscape(); </script> 这边,...
来源: Laya_社区 发布时间: 20180129
... 1 个回复 cuixueying 赞同来自: var iframe:* = Browser.window.document.createElement('iframe'); iframe.setAttribute('src','http://www.baidu.com'); var body:*=Browser.window.document.getElementsByTagName("body")[0]; body.appe...
来源: Laya_社区 发布时间: 20161227
...定义style实现。 //鼠标样式 var body = laya.utils.Browser.window.document.getElementsByTagName("body")[0]; body.setAttribute('style', "cursor:url('mouse/mouseb.png'),url('mouse/aero_unavail_xl.cur'),pointer"); //================= 二、注意的地方: 路径:路径以index.html所在目...
来源: Laya_社区 发布时间: 20180723
打包app,Laya.Browser.document.createElement("script"); 不能用吗? var script:any = Laya.Browser.document.createElement("script"); Laya.Browser.document.body.appendChild(script); script.innerHTML = Laya.loader.getRes(this.resourceurl + "res/main.min.js"); h5是没问题的,打包app 并没...
来源: Laya_社区 发布时间: 20171113
...Browser._container.id="layaContainer"; Browser.document.body.appendChild(Browser._container); } return Browser._container; },function(value){ Browser._container=value; }); 20...
来源: Laya_社区 发布时间: 20170419
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
... 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