大约有 24 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)
打包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
...(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
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
...conch && Browser.window.conch.showAssistantTouch(false); var ctx = document.createElement('canvas').getContext('2d'); function render(){ ctx.fillStyle='#99d9ea'; ctx.fillRect(0,0,window.innerWidth,window.innerHeight); window.requestAnimationFrame(render); } window.requestAnimationFrame(rende...
来源: Laya_社区 发布时间: 20180525
... trace("进来了"); var fileref:*=Browser.document.createElement('script'); fileref.setAttribute("type","text/javascript"); fileref.setAttribute("src", filename); trace(fileref); if (...
来源: Laya_社区 发布时间: 20170321
... id="aaaa",现在想把layabox做的东西嵌入到这个div中。 Browser.document.getElementById("aaaa").appendChild(Browser.canvas.source); 这样写发现引擎自身会创建一个layacontainer的div,canvas会被放到这个div中,请问怎么在不修改引擎的代码下可以把canvas添...
来源: Laya_社区 发布时间: 20170421
...Browser._container.id="layaContainer"; Browser.document.body.appendChild(Browser._container); } return Browser._container; },function(value){ Browser._container=value; }); 20...
来源: Laya_社区 发布时间: 20170419
...essageHandlers 会报错没有这个方法或者对象 比如 var divObj = document.createElement('div'); document.body.appendChild(divObj); divObj.innerHTML = 'xxxxxx id = 'yyyyy'; 这个divObj 没显示出来 document.querySelector('#yyyyy')获取不到 2018-05-22 添加评论 免费帖 --> 分享...
来源: Laya_社区 发布时间: 20180522
...附上一个小Demo,大家可以参考! /*[IF-SCRIPT-BEGIN]('var file= document.createElement("input")');('file.type = "file"'); ('document.body.appendChild(file)'); ('file.style.zIndex = 999999'); ('file.style.position = "absolute"'); ('file.style.top = 20'); ('document.body.appendChild(file);'...
来源: Laya_社区 发布时间: 20160216
...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