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

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

11. 启动画面LoadingView(TypeScript-LayaNative原生服务-LayaNative基础文档) [ 76%]

...新进度条 伪代码如下: ```javascript var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { if(window.loadingView){ nPercent+=33; window.loadingView.loading(nPercent); } } image1.src = "a.png"; var image2 = document.createElement('img'); image2.onload=functio...

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

12. 打开游戏时太多脚本 怎么把脚本分开加载 [ 75%]

...ctor 赞同来自: //登录callBack function loginComplete(){ var script = document.createElement('script'); script.type = "text/javascript"; script.src = '..src/game.js'; document.body.appendChild(script); } index.html里只先引入login.js,执行登录操作后再动态创建game.js。 2018-11-...

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

13. 启动画面LoadingView · LayaAir3.0文档 · LAYABOX [ 75%]

...Percent)更新进度条。 伪代码如下: var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { if(window.loadingView){ nPercent+=33; window.loadingView.loading(nPercent); } } image1.src = "a.png"; var image2 = document.createElement('img'); image2.onload=functio...

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

14. 用jsonp处理跨域问题,还是提示跨域!并且生成的script标签被直接删除了 [ 73%]

... @sky_fly:你的感觉是错的,添加标签类似如下: var script = document.createElement("script"); document.head.appendChild(script); 检查下你的逻辑代码有没有问题。 sky_fly • 2017-04-07 15:35 @yudicoming:发布以前测试是好的,发布后那个script是没...

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

15. 如何使用h5打开本地文件的浏览窗口? [ 72%]

...附上一个小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

16. Laya下怎么实现复制 [ 69%]

... 微博 QZONE 微信 Life | Growing up 赞同来自: 你用 Laya.Browser.document.body.appendChild();  DOM方式可以用ClipboardJS  但是如果你的按钮是个UI组件 就没法了 这是硬伤  想了N多办法都不行 因为浏览器copy机制 你必须点击按钮一下才能复制  哪...

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

17. 打包后启动游戏后报错 [ 69%]

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

18. layaAir分包问题 [ 68%]

...过Url获取具体脚本代码 if (moduleJs) { __JS__("var script = document.createElement('script');") __JS__(" script.type = 'text/javascript';") __JS__(" script.text = moduleJs;") __JS__(" document.body.appendChild(script);") } chunjine • 2017-03-17 12:43...

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

19. 关于 iframe跳转地址 [ 68%]

...ttp://119.29.138.145/bgame/index.html(游戏地址 正式服) var iframe = document.createElement("iframe"); iframe.id = "iframe"; iframe.name = "iframe"; iframe.frameBorder = "no"; iframe.marginwidth="0px"; iframe.marginheight="0px" ; iframe.scrolling = "no"; iframe.border="0px" iframe.style.positi...

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

20. 分享:使用 Chart.js 创建图标 [ 68%]

...的,因为图表框架是根据父容器改变大小的 __JS__("var div=document.createElement('div')"); __JS__("div.style.width='400px'"); __JS__("div.style.height='400px'"); // 相对父级定位,并在最上方显示 __JS__("div.style.position='absolute'"); __JS__("div.style.zIndex=100"); // ...

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