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

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

11. 全局动画不能加载 [ 69%]

...复 gajin2 赞同来自: cuixueying playAction()也可以这样: //根据类型播放动画 this.body.loadAnimation(action);//手动加载动画,这样可以不用修改引擎代码 this.body.play(0, true, action);//bug 2016-10-10 1 0 分享 微博 QZONE 微信 Laya_XS 赞同来自: 你是用Lay...

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

12. laya.utils.Browser [ 69%]

...:String):* 创建浏览器原生节点。 Parameters type:String — 节点类型。 Returns* — 创建的节点对象的引用。 getElementById()method  public static function getElementById(type:String):* 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Parameters type:St...

来源: laya_api 发布时间: 20170929

13. laya.utils.Browser [ 68%]

...:String):* 创建浏览器原生节点。 Parameters type:String — 节点类型。 Returns* — 创建的节点对象的引用。 getElementById()method  public static function getElementById(type:String):* 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Parameters type:St...

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

14. layabox AS3调用JS的示例有吗?(谢谢)。如果没有麻烦指点一二。求助。 [ 68%]

... = new CANNON.World(); world.gravity.set(0, 0, -9.8); // 设置碰撞检测类型 world.broadphase = new CANNON.NaiveBroadphase(); var groundShape:Object = new CANNON.Plane(); var groundBody:Object = new CANNON.Body({mass: 0, shape: groundShape}); world.add(groundBody); // 运算器步进时长 var ...

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

15. laya.utils.Browser_API3.0 [ 68%]

... platform platform: number Defined in laya/utils/Browser.ts:69 真实平台类型,onMobile等是通过UserAgent判断,可能具有欺骗性 Static supportLocalStorage supportLocalStorage: boolean Defined in laya/utils/Browser.ts:77 表示是否支持LocalStorage Static supportWebAudio supportWeb...

来源: Laya3.0_api 发布时间: 20231115

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

...opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式为png; file.style.position ="absolute"; file.style.zIndex = 999; ``` 下面看下完整的代码: ```typescript //初始化引擎 Laya.init(100,100); ...

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

17. 浏览器接口 · LayaAir3.0文档 · LAYABOX [ 67%]

...使用方法: /** * 创建浏览器原生节点。 * @param type 节点类型。 * @return 创建的节点对象的引用。 */ static createElement(type: string): any { Browser.__init__(); return Browser._document.createElement(type); } /** * 返回 Document 对象中拥有指定 id 的第一个...

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

18. as3中,调用原生js的的时候,如何传递原生JS要用到的document.getElementById的ID过去? [ 67%]

...鱼 赞同来自: 186*****590 QRCode的第一个参数是二维码容器,类型是DOM元素。 所以你想要在Sprite中显示二维码是不可以的。 有一个办法是二维码的载体是image或者canvas,可以从中得到base64形式的地址,然后使用Sprite加载这张图片。 ...

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

19. LayaAir和原生DOM交互(TypeScript-2D进阶篇(TS)-扩展模块) [ 66%]

...opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式为png; file.style.position ="absolute"; file.style.zIndex = 999; ``` 下面看下完整的代码: ```typescript class Main { private video:Laya.Video;...

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

20. Laya下的图片上传示例(完整版) [ 65%]

...d:url(b1.png) no-repeat center;cursor:pointer;"; file.type ="file";//设置类型是file类型。 file.size ="30"; file.accept="image/png/jpg";//设置文件的格式为png; file.style.position ="absolute"; // file.style.zIndex = 999; Laya.Browser.document.body.appendChild(file);//添加到页面...

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