大约有 97 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
Laya_社区(68) Laya2.0_文档(13) Laya3.0_文档(6) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
为啥给div 指定class没效果? var photoDiv = Laya.Browser.document.createElement("div"); photoDiv.class = "photo"; 我自己写的css,确定加载进来了。。。为啥没鸟用 2017-12-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...
来源: Laya_社区 发布时间: 20171228
... 我按例程 用 videoElement = Browser.createElement("video"); Browser.document.body.appendChild(videoElement); 有PC端有效 在手机上就死掉了,为什么呢?是不是手机上不允许往页面里写东西呢 2018-04-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20180423
...arguments[index]); } return str; }; var iframe = laya.utils.Browser.window.document.createElement('iframe'); iframe.setAttribute('src', "http://www.layabox.com/"); iframe.setAttribute('frameborder', 0); var body = laya.utils.Browser.window.document.getElementsByTagName("body")[0]; body.appe...
来源: Laya_社区 发布时间: 20170415
...过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
... 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
...置一致,这里我们默认在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
...CLICK, this, this.onPlay); this.elentAutio = <HTMLAudioElement>document.createElement('audio'); this.elentAutio.src="res/10.mp3"; } onPlay():void{ this.elentAutio.play(); } 由于要播放一些跨域音频,所以想到用audio,但PC上正常,手机上不能播放。...
来源: Laya_社区 发布时间: 20170217
...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
.../ 创建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
...t'){meta.content=content;flag=true;break;}i++;}; /*__JS__ */if(!flag){meta=document.createElement('meta');meta.name='viewport',meta.content=content;document.getElementsByTagName('head')[0].appendChild(meta);}; 我直接注释掉laya.core.js里的这3行 貌似可以了
来源: Laya_社区 发布时间: 20160501