大约有 138 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
Laya_社区(104) Laya2.0_文档(16) Laya3.0_文档(7) Laya_示例(4) Laya2.0_示例(4) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...= 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_示例 发布时间: 20241118
...置一致,这里我们默认在0点位置; var file:Object = Browser.document.createElement("input"); //设置file的样式 file.style="filter:alpha(opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式...
来源: Laya_社区 发布时间: 20180529
...ipt:* = Browser.createElement("script"); script.id = "serverlist"; Browser.document.head.appendChild(script); script.src = url; script.type = "get"; Browser.window[callbackName] = callback; //loading Main.tl.startLoad(); } private function callback(data:*):void { //移除 var script:* = Browser.getE...
来源: Laya_社区 发布时间: 20180209
... style.direction = "rtl"; //Browser.document.body.style.direction = "rtl"; Render._mainCanvas.source.style.direction = "rtl"; Text.RightToLeft = true; Browser.document.body.appendChild(Brow...
来源: Laya_社区 发布时间: 20180313
...arguments[index]); } return str; }; var iframe = laya.utils.Browser.window.document.createElement('iframe'); iframe.setAttribute('src', "http://www.layabox.com/&quot;); iframe.setAttribute('frameborder', 0); var body = laya.utils.Browser.window.document.getElementsByTagName("body")[0]; body.appe...
来源: Laya_社区 发布时间: 20170415
...回复 Laya_Aaron 赞同来自: 题主已经自行解决了,直接设置 document.body.style.overflow="hidden";超出截断,没有滚动条了 2019-05-16 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 这个浏览器层面的滚动条,与引擎是无关的。 2019-05-14 0 4 分享 微...
来源: Laya_社区 发布时间: 20190514
... function onLoaded(): void { //laya相关代码 var div:any = Laya.Browser.document.createElement("div"); div.style.width = "600px"; div.style.height = "400px"; Laya.Browser.document.body.appendChild(div); var myChart = new Laya.Browser.window.echarts.init(div); var option = { title: { text: 'EChart...
来源: Laya_社区 发布时间: 20180707
...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
..._event.nativeEvent = nativeEvent || e; _this._target = null; var docElem = document.documentElement var win = document.defaultView var clientBox = Browser._container.getBoundingClientRect() this._point.setTo((e.pageX || e.clientX)-clientBox.x - win.pageXOffset - docElem.clientLeft,(e.pageY || e.clie...
来源: Laya_社区 发布时间: 20191227
... trace("进来了"); var fileref:*=Browser.document.createElement('script'); fileref.setAttribute("type","text/javascript"); fileref.setAttribute("src", filename); trace(fileref); if (...
来源: Laya_社区 发布时间: 20170321