大约有 12 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0034 秒)
...条,进度不能重置问题 官方提供的进度条示例 只能设置progress.png的九宫, 里面的progress$bar.png 无法设置,然而拉长以后效果简直无法直视 这种进度条怎么实现? 2.0 类库设置原则,laya.bdmini.js,laya.wxmini.js以前的版本有后者,现在...
来源: Laya_社区 发布时间: 20170717
...m {Laya.Handler} complete 打开场景完成回调 * @param {Laya.Handler} progress 打开场景进度回调 */ openScene(url = null, otherHandler = null, closeOther = true, param = null, complete = null, progress = null) { if (!url) return if (otherHandler === null) otherHandler = this._promiseHand...
来源: Laya_社区 发布时间: 20181124
...现?目前只有发光滤镜 官方提供的进度条示例 只能设置progress.png的九宫, 里面的progress$bar.png 无法设置,然而拉长以后效果简直无法直视 如何给Sprite的graphics绘制的线条添加发光滤镜? 问题状态 最新活动: 2017-09-22 11:44 浏览: 81...
来源: Laya_社区 发布时间: 20170922
... } }) loadTask.onProgressUpdate(res => { console.log('下载进度', res.progress) console.log('已经下载的数据长度', res.totalBytesWritten) console.log('预...
来源: Laya_社区 发布时间: 20190514
...nts.HTTPStatusEvent; import flash.events.IOErrorEvent; import flash.events.ProgressEvent; import flash.events.SecurityErrorEvent; import flash.net.URLLoader; import flash.net.URLLoaderDataFormat; import flash.net.URLRequest; import flash.net.URLRequestMethod; import flash.net.URLVariables; public cl...
来源: Laya_社区 发布时间: 20151217
...ew Laya.HttpRequest(); //new一个HttpRequest类 this.http.once(Laya.Event.PROGRESS,this,this.onProgress); //数据传输中 this.http.once(Laya.Event.COMPLETE,this,this.onComplete); //数据传输完成后,会返回一个data this.http.once(Laya.Event.ERROR,this,this.onError); //数据传输失...
来源: Laya_社区 发布时间: 20180315
...533", } alert(JSON.stringify(data)); hr = new HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, this, onHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestError); var headers = []; headers.push("Content-Type"); headers.push("application/json"); h...
来源: Laya_社区 发布时间: 20170620
...描边会报错 QQ玩一玩中不支持带有美元符号的命名,如:progress$bar.png 问题状态 最新活动: 2018-08-08 10:48 浏览: 1794 关注: 3 人 CrossCrush • 2018-08-31 19:05 没有解决,后面我们决定不用玩一玩的原生接入了,改成H5方式接入。不然还有...
来源: Laya_社区 发布时间: 20180619
...值。*/ static LOADED: string; /** 定义 progress 事件对象的 type 属性值。*/ static PROGRESS: string; /** 定义 input 事件对象的 type 属性值。*/ static INPUT: string; /** 定义 render 事...
来源: Laya_社区 发布时间: 20170601
...上, 看代码-> this.hr=new HttpRequest(); this.hr.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.hr.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); this.hr.once(Laya.Event.ERROR, this, this.onHttpRequestError); this.hr.send("http://www.baidu.com", null, 'post',...
来源: Laya_社区 发布时间: 20151028