大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(51) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...理宽高(屏幕宽高)2.3 设备像素比三、调用原生对象3.1 document Dom3.2 window 窗口3.3 container 画布四、判断运行环境浏览器接口 一、概述 在项目开发中,往往我们需要跟外部运行环境打交道,比如在浏览器运行或者在一些小游戏平...
来源: Laya3.0_文档 发布时间: 20241014
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
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
...(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
...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
...素 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
...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
... 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
...定义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
打包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