大约有 34 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
...复 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
...:String):* 创建浏览器原生节点。 Parameters type:String — 节点类型。 Returns* — 创建的节点对象的引用。 getElementById()method public static function getElementById(type:String):* 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Parameters type:St...
来源: laya_api 发布时间: 20170929
...:String):* 创建浏览器原生节点。 Parameters type:String — 节点类型。 Returns* — 创建的节点对象的引用。 getElementById()method public static function getElementById(type:String):* 返回 Document 对象中拥有指定 id 的第一个对象的引用。 Parameters type:St...
来源: Laya2.0_api 发布时间: 20190513
... = 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
... 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
...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
...使用方法: /** * 创建浏览器原生节点。 * @param type 节点类型。 * @return 创建的节点对象的引用。 */ static createElement(type: string): any { Browser.__init__(); return Browser._document.createElement(type); } /** * 返回 Document 对象中拥有指定 id 的第一个...
来源: Laya3.0_文档 发布时间: 20241014
...鱼 赞同来自: 186*****590 QRCode的第一个参数是二维码容器,类型是DOM元素。 所以你想要在Sprite中显示二维码是不可以的。 有一个办法是二维码的载体是image或者canvas,可以从中得到base64形式的地址,然后使用Sprite加载这张图片。 ...
来源: Laya_社区 发布时间: 20170817
...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
...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