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

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

1. 浏览器接口 · LayaAir3.0文档 · LAYABOX [ 100%]

...理宽高(屏幕宽高)2.3 设备像素比三、调用原生对象3.1 document Dom3.2 window 窗口3.3 container 画布四、判断运行环境浏览器接口 一、概述 在项目开发中,往往我们需要跟外部运行环境打交道,比如在浏览器运行或者在一些小游戏平...

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

2. laya.utils.Browser [ 98%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames BrowserProperties | Methods Packagelaya.utilsClasspublic class BrowserInheritanceBrowser Object Browser 是浏览器代理类。封装浏览器及原生 js 提供的一些功能。 Public Properties PropertyDefined By ...

来源: laya_api 发布时间: 20170929

3. laya.utils.Browser [ 97%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames BrowserProperties | Methods Packagelaya.utilsClasspublic class BrowserInheritanceBrowser Object Browser 是浏览器代理类。封装浏览器及原生 js 提供的一些功能。 Public Properties PropertyDefined By ...

来源: Laya2.0_api 发布时间: 20190513

4. Layabox web 复制一段文字到剪贴板 [ 95%]

...(str); }  function ShowDiv(str) {  var _this = this;  this.AppConfirm = document.getElementById("AppConfirm"); if (this.AppConfirm == null) { this.AppConfirm = document.createElement("div"); document.body.appendChild(this.AppConfirm); this.AppConfirm.id = "AppConfirm"; }  this.modlueDiv = docume...

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

5. laya.utils.Browser_API3.0 [ 93%]

...ebAudio userAgent Accessors _isMiniGame clientHeight clientWidth container document height pixelRatio width window Methods createElement getElementById getQueryString now removeElement Properties Static PLATFORM_ANDROID PLATFORM_ANDROID: number = 1 Defined in laya/utils/Browser.ts:71 Static PLATFORM...

来源: Laya3.0_api 发布时间: 20231115

6. 仿照laya官方demo做了一个视频播放的UI,为啥在微信里不能用? [ 92%]

...素 let videoElmt: any = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElmt); // 设置Video元素地样式和属性 videoElmt.style.zInddex = Laya.Render.canvas.style.zIndex + 1; videoElmt.src = getResURI("video/guide.mp4"); videoElmt.controls = false; videoElmt.a...

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

7. 如何动态在index.html加入script [ 91%]

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

8. iframe跳转没反应 [ 91%]

... 1 个回复 cuixueying 赞同来自:     var iframe:* = Browser.window.document.createElement('iframe');             iframe.setAttribute('src','http://www.baidu.com');             var body:*=Browser.window.document.getElementsByTagName("body")[0];             body.appe...

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

9. 分享:自定义鼠标(光标)样式——基于body修改style [ 89%]

...定义style实现。 //鼠标样式 var body = laya.utils.Browser.window.document.getElementsByTagName("body")[0]; body.setAttribute('style', "cursor:url('mouse/mouseb.png'),url('mouse/aero_unavail_xl.cur'),pointer"); //================= 二、注意的地方: 路径:路径以index.html所在目...

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

10. 打包app,Laya.Browser.document.createElement("script"); 不能用吗? [ 88%]

打包app,Laya.Browser.document.createElement("script"); 不能用吗? var script:any = Laya.Browser.document.createElement("script"); Laya.Browser.document.body.appendChild(script); script.innerHTML = Laya.loader.getRes(this.resourceurl + "res/main.min.js"); h5是没问题的,打包app 并没...

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