大约有 73 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
Laya_社区(46) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...页,编辑器和开发者工具上没问题 this.iframe = Laya.Browser.document.createElement("iframe"); this.iframe.style.position ="absolute";//设置布局定位。这个不能少。 this.iframe.style.zIndex = 1000;//设置层级 this.iframe.style.le...
来源: Laya_社区 发布时间: 20200514
...置一致,这里我们默认在0点位置; var file:Object = Browser.document.createElement("input"); //设置file的样式 file.style="filter:alpha(opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式...
来源: Laya_社区 发布时间: 20180529
...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
...uot;www.layabox.com"; p.y = 200; 方法 2 var iframe = Browser.window.document.createElement('iframe'); iframe.setAttribute('src','www.layabox.com'); var body =Browser.window.document.getElementsByTagName("body")[0]; body.appendChild(iframe); 都没有反应 ?也没有崩溃? cuix...
来源: Laya_社区 发布时间: 20170522
... 我按例程 用 videoElement = Browser.createElement("video"); Browser.document.body.appendChild(videoElement); 有PC端有效 在手机上就死掉了,为什么呢?是不是手机上不允许往页面里写东西呢 2018-04-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20180423
...下,希望可以得到您的回复,谢谢~ this.iframe = Laya.Browser.document.createElement("iframe"); this.iframe.style.position ="absolute";//设置布局定位。这个不能少。 this.iframe.style.zIndex = 1000;//设置层级 this.iframe.style.left ="100px"; t...
来源: Laya_社区 发布时间: 20170630
... WebGL); var videoElement:Object = Browser.createElement("video"); Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zInddex = Render.canvas.style.zIndex + 1; videoElement.src = "http://127.0.0.1/upload/aa.mp4"; videoElement.controls = true; }...
来源: Laya_社区 发布时间: 20171108
.../ 创建Video元素 videoElement = Browser.createElement("video"); Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zInddex = Render.canvas.style.zIndex - 1; videoElement.src = "mp4/ship.mp4"; //videoElement.autoplay="autoplay" videoElement.p...
来源: Laya_社区 发布时间: 20171222
...on loadJs(jspath,defer = true) { //得到html的头部dom // var theHead = document.getElementsByTagName('head').item(0); var theHead = document.getElementsByTagName('body').item(0); //创建脚本的dom对象实例 var myScript = document.createElement('script'); myScript.src = jspath; //指定脚...
来源: Laya_社区 发布时间: 20180316
...e = mapDiv.style; style.position = "absolute"; // style.z-index=1; Browser.document.body.appendChild(mapDiv); 使用这个方式加载的百度地图,然后通过Laya.Sprite3D加载的3d模型,可是3d模型显示在地图后面,看不到 2018-01-29 添加评论 免费帖 --> 分享 微博 QZO...
来源: Laya_社区 发布时间: 20180129