大约有 49 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...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
打包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
...dth,height,conch.getCachePath()+"/test.png" ); window.globalImage = window.document.createElement("img"); window.globalImage.onload=function() { ...使用image对象 } window.globalImage.src = "file:///" + conch.getCachePath()+"/test.png"; */ // window.image = window.document.createElement("img"); i...
来源: Laya_社区 发布时间: 20180227
...onch.captureScreen(function(arrayBuff,width,height){ window.image = window.document.createElement("img"); window.image.putImageData(arrayBuff,width,height); }) } } E/LayaBox: >>>>>>>>>>>>>>>>>>>>>>>>>>>>classNa...
来源: Laya_社区 发布时间: 20180227
..." id="file"> <script type="text/javascript"> function openFile(){ document.getElementById("file").click(); } ts里调用 openFile() 弹不出文件选择框 请问该用什么方法 2017-07-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20170706
...位置一致,这里我们默认在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
... 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
...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
...现空白和点击错位问题: 因为ios的safari在横屏状态下,document.body.clientHeight会比window.innerHeight高,因为ios的safari全屏模式是根据document.body.clientHeight高度是否超过window.innerHeight且用户手动滚动页面时才会自动变成全屏的,旋转横...
来源: Laya_社区 发布时间: 20190515
...素 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