大约有 81 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Laya_社区(54) Laya2.0_文档(12) Laya3.0_文档(5) Laya_示例(4) Laya2.0_示例(3) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...放,添加了video标签,代码如下 var videoElement = Laya.Browser.createElement("video"); console.log(videoElement) Laya.Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zInddex = Laya.Render.canvas.style.zIndex + 1; var html = '<s...
来源: Laya_社区 发布时间: 20171031
...望可以得到您的回复,谢谢~ this.iframe = Laya.Browser.document.createElement("iframe"); this.iframe.style.position ="absolute";//设置布局定位。这个不能少。 this.iframe.style.zIndex = 1000;//设置层级 this.iframe.style.left ="100px"; this.ifram...
来源: Laya_社区 发布时间: 20170630
...nputElement() { Laya.Input['_initInput'](Laya.Input['area'] = Laya.Browser.createElement("textarea")); Laya.Input['_initInput'](Laya.Input['input'] = Laya.Browser.createElement("input")); Laya.Input['inputContainer'] = Laya.Browser.createElement("div"); Laya.Input['inpu...
来源: Laya_社区 发布时间: 20200103
3D文本内容是否可以清除 重新书写 let cav = Laya.Browser.createElement("canvas"); let cxt:CanvasRenderingContext2D = cav.getContext("2d"); cav.width = 256; cav.height = 256; cxt.fillStyle = 'rgb(' + '255' + ',' + '0' + ',0)'; cxt.font = "bold 50px 宋体"; cxt.textAlign = "center";//...
来源: Laya_社区 发布时间: 20191211
... Function.Browser.__init__ (<anonymous>:6184:57) at Function.Browser.createElement (<anonymous>:6241:12) at Function.WebGL.isWebGLSupported (<anonymous>:3463:23) at Function.WebGL.enable (<anonymous>:3171:15) at Function.Laya3D.init (<anonymous>:13337:38) at Object.os.i...
来源: Laya_社区 发布时间: 20170224
...题,谢谢! private initCode() { var div: any = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div, { width: 100, height: 100 }); var url: string = this.URL; this.qrcode.makeCode(url); Laya.stage.once("click", this, this.clickHandler); this.qrcodeSp = ne...
来源: Laya_社区 发布时间: 20180412
...时rendertexture 不能赋值给image的texture 在2.0中如何将Browser.createElement('canvas')转为可用的Texture 问题状态 最新活动: 2017-10-25 15:58 浏览: 919 关注: 2 人
来源: Laya_社区 发布时间: 20171024
...age.ALIGN_MIDDLE; // 创建Video元素 var videoElement:any = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和属性 videoElement.style.zInddex = Laya.Render.canvas.style.zIndex + 1; videoElement.src = "../../res/av/mov_bbb.m...
来源: Laya_社区 发布时间: 20200909
...听事件。this.btn_CloseWebiFrame = laya.utils.Browser.window.document.createElement('button'); this.btn_CloseWebiFrame.onclick = () => { console.log("onclick"); }; oncontextmenu也没有问题。this.img_closeWebiFrame.oncontextmenu = () => { console.log("aaa4"); this.img_closeWebiFrame.s...
来源: Laya_社区 发布时间: 20180126
...在Laya上播放视频,看了下帖子,都说是要使用 Laya.Browser.createElement("video") 创建html元素来播放视频,这样做和Laya引擎的结合太差,可定制性也很大,关键时有时候需要对视频界面做一些动画效果时就很麻烦, 于是就看看其他引...
来源: Laya_社区 发布时间: 20191019