大约有 493 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
Laya_社区(179) Laya3.0_api(109) Laya2.0_文档(72) Laya2.0_api(66) laya_api(46) Laya3.0_文档(15) Laya2.0_示例(4) Laya_示例(2)
...ion安装的指定处理器。 Geolocation getCurrentPosition(onSuccess:Handler, onError:Handler = null):void[static] 获取设备当前位置。 Geolocation watchPosition(onSuccess:Handler, onError:Handler):int[static] 监视设备当前位置。回调处理器在设备位置改变时被执...
来源: laya_api 发布时间: 20170929
...ion安装的指定处理器。 Geolocation getCurrentPosition(onSuccess:Handler, onError:Handler = null):void[static] 获取设备当前位置。 Geolocation watchPosition(onSuccess:Handler, onError:Handler):int[static] 监视设备当前位置。回调处理器在设备位置改变时被执...
来源: Laya2.0_api 发布时间: 20190513
... proArr = []; proArr[0]=pro1; proArr[1]=pro2; Laya.loader.load(proArr,Laya.Handler.create(this,onProLoaded)); if(Laya.Browser.onAndriod) { Laya.stage.scaleMode = Laya.Stage.SCALE_EXACTFIT; } else { Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL; } Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; Laya.s...
来源: Laya_社区 发布时间: 20170701
...10 Returns Media Methods Static getMedia getMedia(options: any, onSuccess: Handler, onError: Handler): void Defined in laya/device/media/Media.ts:28 获取用户媒体。 Parameters options: any 简单的可选项可以使{ audio:true, video:true }表示同时捕捉两者。详情见https://develope...
来源: Laya3.0_api 发布时间: 20231115
...yerglobal.swc的源码? 我想修改一下Function,让h5开发时候把Handler嵌入进去 2017-07-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 这个提供不了。 ...
来源: Laya_社区 发布时间: 20170730
...ite; import laya.resource.Texture; import laya.ui.Image; import laya.utils.Handler; public class addPic { private var picUrl:String; private var pic:Sprite; private var picX:int; private var picY:int; public function addPic(str:String, x:int, y:int) { picUrl = str; picX = x; picY = y; Laya.loader.lo...
来源: Laya_社区 发布时间: 20170522
Laya.Handler.create和new Laya.Handler有啥区别 this.sList.mouseHandler = Laya.Handler.create(this, this.onMouse);//鼠标响应事件 this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应. 2017-04-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20170425
...处理器,(默认返回参数: 项索引(index:number))。*/ selectHandler: Handler; /**单元格渲染处理器(默认返回参数cell:Box,index:number)。*/ renderHandler: Handler; /**单元格鼠标事件处理器(默认返回参数e:Event,index:number)。*/ mouseHandler: Handler; /**指...
来源: Laya_社区 发布时间: 20180801
...umber Returns void Static getCurrentPosition getCurrentPosition(onSuccess: Handler, onError?: Handler): void Defined in laya/device/geolocation/Geolocation.ts:57 获取设备当前位置。 Parameters onSuccess: Handler 带有唯一Position参数的回调处理器。 Default value onError: Handler =...
来源: Laya3.0_api 发布时间: 20231115
为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create()? 我测试了一下,如果类似于 tab.selectHandler = Laya.Handler.create(tab, this.onSelect); ...
来源: Laya_社区 发布时间: 20170818