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

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

21. LayaAir和原生DOM交互(JavaScript-2D进阶篇(JS)-扩展模块) [ 78%]

...(600,400); Laya.stage.bgColor = "#ffcccc"; var div = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div,{ width:100, height:100 }); var url = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,clickHandler); this.qrcodeSp = new La...

来源: Laya2.0_文档 发布时间: 20210714

22. 仿照laya官方demo做了一个视频播放的UI,为啥在微信里不能用? [ 78%]

...ructor() { super(); // 创建Video元素 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"); vi...

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

23. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 78%]

... public function LayaSample() { Laya.init(100,100); var script:* = Browser.createElement("script"); Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static function onComplete():void{ trace("JSONP执行到这里"); } } } ``` ```java var script:* = Browse...

来源: Laya2.0_文档 发布时间: 20210714

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

...         }           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._view.appendCh...

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

25. laya.utils.Browser [ 77%]

...生 window 对象的引用。BrowserPublic Methods  MethodDefined By  createElement(type:String):*[static] 创建浏览器原生节点。 Browser  getElementById(type:String):*[static] 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Browser  now():Number[static] 获取...

来源: laya_api 发布时间: 20170929

26. video在安卓手机上,怎么设置同层播放,还有怎么设置隐藏控制播放按钮 [ 77%]

.../ TODO Auto Generated method stub // 创建Video元素 var div:* = Browser.createElement("div"); div.setAttribute("id", "videobox"); Browser.document.body.appendChild(div); // var canvas:* = Browser.getElementById("layaCanvas") // canvas.appendChild(videoElement) videoElement = Browser.createElement...

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

27. laya.utils.Browser [ 77%]

...生 window 对象的引用。BrowserPublic Methods  MethodDefined By  createElement(type:String):*[static] 创建浏览器原生节点。 Browser  getElementById(type:String):*[static] 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Browser  now():Number[static] 获取...

来源: Laya2.0_api 发布时间: 20190513

28. JSONP跨域读取数据(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 77%]

...Sample { constructor() { Laya.init(100,100); var script:any = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static onComplete():void{ console.log("JSONP执行到这里"); } } new LayaSample(); ``` ```java var...

来源: Laya2.0_文档 发布时间: 20210715

29. JSONP跨域读取数据(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 77%]

...on(){ function LayaSample(){ Laya.init(100,100); var script = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } LayaSample.onComplete = function(){ console.log("JSONP执行到这里"); } return LayaSample; })(); new Lay...

来源: Laya2.0_文档 发布时间: 20210715

30. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 76%]

...址。具体的逻辑代码如下: var div:any = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div,{ width:100, height:100 }); var url:string = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,this.clickHandler); this.qrcodeS...

来源: Laya3.0_文档 发布时间: 20241014