大约有 73 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0038 秒)
Laya_社区(46) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
createElement('button') 问题 var button = Laya.Browser.window.document.createElement('button'); button.type='button'; button.value ='逐加'; button.src = "xxxxx"; button.style.width = '40px'; button.style.height = '40px'; button.style.background = "../../../bin/res/atlas/assets.png"; // mapDivx....
来源: Laya_社区 发布时间: 20170619
...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); 怎么运行上边这段代码呢?打开谷歌浏览器,随便打开一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就能看到上面截图的效果。或...
来源: Laya3.0_文档 发布时间: 20241014
... id="aaaa",现在想把layabox做的东西嵌入到这个div中。 Browser.document.getElementById("aaaa").appendChild(Browser.canvas.source); 这样写发现引擎自身会创建一个layacontainer的div,canvas会被放到这个div中,请问怎么在不修改引擎的代码下可以把canvas添...
来源: Laya_社区 发布时间: 20170421
... 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
...ribute('readonly', 'readonly'); input.setAttribute("value",value); Browser.document.body.appendChild(input); input.select(); input.setSelectionRange(0, value.length+1); if(Browser.document.execCommand("Copy")){ Browser.removeElement(input); } } 2019-12-16 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20191216
...= Laya.Render.canvas.zIndex + 1; input.style.width = "100px"; Laya.Browser.document.body.appendChild(input); return input; } fitDOMElements(){ for (let i = 0; i < arguments.length; i++) { let dom = arguments[i]; Laya.Utils.fitDOMElementInArea(dom, this.form, 100, i * (this.rowSpacing + this.rowHeigh...
来源: Laya2.0_示例 发布时间: 20241124
...= Laya.Render.canvas.zIndex + 1; input.style.width = "100px"; Laya.Browser.document.body.appendChild(input); return input; } function fitDOMElements(){ for (var i = 0; i < arguments.length; i++) { var dom = arguments[i]; Laya.Utils.fitDOMElementInArea(dom, this.form, 100, i * (this.rowSpacing + this...
来源: Laya_示例 发布时间: 20241124
...aya.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:* = Browser.createElement("script");//这...
来源: Laya2.0_文档 发布时间: 20210714
...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
...,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 script:any = Laya.Browser.createEleme...
来源: Laya2.0_文档 发布时间: 20210715