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

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

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

打包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

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

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

3. 原生js实现复制到剪贴板功能在浏览器中不可用 [ 87%]

...生js实现复制到剪贴板功能在浏览器中不可用 var oInput = document.createElement('input'); oInput.value = "复制的内容"; document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令用原生js实现复制功能,...

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

4. 屏幕截屏问题 [ 85%]

...onch.captureScreen(function(arrayBuff,width,height){ window.image = window.document.createElement("img"); window.image.putImageData(arrayBuff,width,height); }) } }     E/LayaBox: >>>>>>>>>>>>>>>>>>>>>>>>>>>>classNa...

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

5. createElement('button') 问题 [ 84%]

createElement('button') 问题 var button = Laya.Browser.window.document.createElement('button'); button.type='button'; button.value ='逐加'; button.src = "xxxxx"; button.style.width = '40px'; button.style.height = '40px'; button.style.background = "../../../bin/res/atlas/assets.png"; // mapDivx....

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

6. [LayaAir3]Laya3.0 中设置舞台背景透明无效 [ 84%]

...w();             }           private iframe: any = Laya.Browser.document.createElement("iframe");     private _view: HTMLDivElement = document.createElement("div");           public Show(): void {         Laya.Browser.document.body.appendChild(this._view);         this._vie...

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

7. ios上input无法隐藏 [ 80%]

ios上input无法隐藏            var z_file = Laya.Browser.document.createElement("input"); //创建input             var f_file = Laya.Browser.document.createElement("input"); //创建input             z_file.style="filter:alpha(opacity=0);opacity:0;width: 29%;height:11%;";   ...

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

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

... 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. TS setExternalLinkEx問題 [ 78%]

...conch && Browser.window.conch.showAssistantTouch(false); var ctx = document.createElement('canvas').getContext('2d'); function render(){ ctx.fillStyle='#99d9ea'; ctx.fillRect(0,0,window.innerWidth,window.innerHeight); window.requestAnimationFrame(render); } window.requestAnimationFrame(rende...

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

10. Laya下的图片上传示例(完整版) [ 78%]

...位置一致,这里我们默认在0点位置 var file:any = Laya.Browser.document.createElement("input"); var img:any = Laya.Browser.document.createElement("img"); //设置file样式 file.style="filter:alpha(opacity=0);opacity:0;width:200px;height:100px;background:url(b1.png) no-repeat center;curs...

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