大约有 37 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
...本场景要用的 ["resources/UI/image.png", "resources/UI/progress.png", "resources/UI/progress$bar.png","resources/UI/images/dsgame/banner2.jpg"] ).then(() => { let resArr: Array<any> = [ { url: "resources/UI/images/dsgame/bgImage2.jpg", ...
来源: Laya_社区 发布时间: 20230713
...blic/Protected All Inherited Externals Only exported Menu Globals "laya/ui/ProgressBar" ProgressBar Class ProgressBar ProgressBar 组件显示内容的加载进度。 example 以下示例代码,创建了一个新的 ProgressBar 实例,设置了它的皮肤、位置、宽高、网格等信息,...
来源: Laya3.0_api 发布时间: 20231115
...,错误事件等 /** * 请求进度改变时调度。 * @eventType Event.PROGRESS * */ /*[Event(name = "progress", type = "laya.events.Event")]*/ /** * 请求结束后调度。 * @eventType Event.COMPLETE * */ /*[Event(name = "complete", type = "laya.events.Event")]*/ /** * 请求出错时调度...
来源: Laya3.0_文档 发布时间: 20241014
...进度,示例如下:package { import laya.net.Loader; import laya.ui.ProgressBar; import laya.utils.Handler; public class LoadingDemo { private var progressBar:ProgressBar; public function LoadingDemo() { Laya.init(550,400); //预加载loading条资源 var pro1:Object={url:"loads/progressBar.png...
来源: Laya_社区 发布时间: 20160509
...mp; callBack.runWith([1, data]); } }); //获取加载进度 downloadTask.onProgressUpdate(function (data:Object):void { callBack != null && callBack.runWith([2, data.progress]); }); } 2018-08-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20180820
...條的 然後思路大概就是下面的codeclass LoaderManager { private progressUI: UIBase; private token; constructor(token) { Laya.loader.load([{ url: "res/ui/LoadProgress.fui", type: Loader.BUFFER }], Handler.create(this, this.loadProgress)) this.token = token; } public loadProgress() { this.pr...
来源: Laya_社区 发布时间: 20171204
...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
...对目标对象属性的渐变。 Public Properties PropertyDefined By progress : Number[write-only] 设置当前执行比例Tween update : Handler更新回调,缓动数值发生变化时,回调变化的值TweenPublic Methods MethodDefined By clear():void 停止并清理当前缓动...
来源: laya_api 发布时间: 20170929
...= <Area>{ w: -1, h: -1 }; /** 血条 */ private _blood_chart: Laya.ProgressBar; // toset: private _blood_area: Area = new AreaEntity( 100, 20 ); public _blood_value: number; /** 魔鬼 */ private _demon_ani: Laya.Animation; // toset: private _demon_area: Area = new AreaEntity( 100, 100); ...
来源: Laya_社区 发布时间: 20180515
....Event.COMPLETE, e); } } private progressHandler(e: any): void { console.log("netconnection progress:", e); this.event(Laya.Event.PROGRESS, e); } private errorHandler(e: any): void { ...
来源: Laya_社区 发布时间: 20161109