大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)
Laya_社区(51) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); ``` 怎么运行呢?打开谷歌浏览器,随便打开你一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就看到上面截图的效果。或者新建个htm...
来源: Laya2.0_文档 发布时间: 20210715
...现空白和点击错位问题: 因为ios的safari在横屏状态下,document.body.clientHeight会比window.innerHeight高,因为ios的safari全屏模式是根据document.body.clientHeight高度是否超过window.innerHeight且用户手动滚动页面时才会自动变成全屏的,旋转横...
来源: Laya_社区 发布时间: 20190515
...arguments[index]); } return str; }; var iframe = laya.utils.Browser.window.document.createElement('iframe'); iframe.setAttribute('src', "http://www.layabox.com/"); iframe.setAttribute('frameborder', 0); var body = laya.utils.Browser.window.document.getElementsByTagName("body")[0]; body.appe...
来源: Laya_社区 发布时间: 20170415
...;//关闭重力 // create a renderer var render = Render.create({ element: document.body, engine: engine }); // create two boxes and a ground var boxA = Bodies.rectangle(400, 200, 80, 80); var boxB = Bodies.rectangle(450, 50, 80, 80); var ground = Bodies.rectangle(400, 500, 810, 60, { isStatic: true...
来源: Laya_社区 发布时间: 20170905
...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
...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); 怎么运行上边这段代码呢?打开谷歌浏览器,随便打开一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就能看到上面截图的效果。或...
来源: Laya3.0_文档 发布时间: 20241014
...,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
...(100,100); var script = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } LayaSample.onComplete = function(){ console.log("JSONP执行到这里"); } return LayaSample; })(); new LayaSample(); ``` ```java var script = La...
来源: Laya2.0_文档 发布时间: 20210715
...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
... style.direction = "rtl"; //Browser.document.body.style.direction = "rtl"; Render._mainCanvas.source.style.direction = "rtl"; Text.RightToLeft = true; Browser.document.body.appendChild(Brow...
来源: Laya_社区 发布时间: 20180703