• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)

21. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 84%]

...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); ``` 怎么运行呢?打开谷歌浏览器,随便打开你一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就看到上面截图的效果。或者新建个htm...

来源: Laya2.0_文档 发布时间: 20210715

22. ios safari横屏下,鼠标点击不正确,且旋转屏幕时显示错位 [ 84%]

...现空白和点击错位问题: 因为ios的safari在横屏状态下,document.body.clientHeight会比window.innerHeight高,因为ios的safari全屏模式是根据document.body.clientHeight高度是否超过window.innerHeight且用户手动滚动页面时才会自动变成全屏的,旋转横...

来源: Laya_社区 发布时间: 20190515

23. 用iframe内嵌网页及适配 [ 84%]

...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

24. 在Laya中使用Matter.js的最简示例 (JS) [ 84%]

...;//关闭重力 // 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

25. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 83%]

...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

26. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 83%]

...); img.src = url; img.style.position ="absolute"; img.style.zIndex = 99999 document.body.appendChild(img); 怎么运行上边这段代码呢?打开谷歌浏览器,随便打开一个空白网页,F12,把上面的代码粘贴到控制台,然后回车,就能看到上面截图的效果。或...

来源: Laya3.0_文档 发布时间: 20241014

27. JSONP跨域读取数据(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 83%]

...,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

28. JSONP跨域读取数据(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 83%]

...(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

29. 一个方法实现复制到粘贴板 [ 82%]

...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

30. 阿拉伯语言的显示都是反的 [ 82%]

...        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