大约有 127 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
...("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除...
来源: Laya3.0_文档 发布时间: 20230303
...eFont (http://127.0.0.1:53804/game/code.js:803:17) at Loader.__proto.onLoaded (http://127.0.0.1:53804/game/code.js:12700:11) at HTMLImage.onload (http://127.0.0.1:53804/game/code.js:21213:15) at Image._source._source.onload (http://127.0.0.1:53804/game/code.js:20175:11) 附件 : ...
来源: Laya_社区 发布时间: 20180307
...Laya.Loader.IMAGE} ]; Laya.loader.load(resArr, Laya.Handler.create(null, onLoaded)); function onLoaded(): void { Laya.URL.basePath ="https://xxx.com/"; //实例UI界面 var Main: MenuPageUI = new MenuPageUI(); Laya.stage.addChild(Main); } 在我找原因的时候...
来源: Laya_社区 发布时间: 20191122
...ader.ATLAS }, ]; Laya.loader.load(resArray, Laya.Handler.create(this, this.onLoaded)); Laya.loader.create("ui/BG/play-bg.png", Laya.Handler.create(this, this.onLoaded)); 在微信小游戏里面可以显示,但是实体机子上就无法显示"ui/BG/play-bg.png"这一张图,其他图片可以 ...
来源: Laya_社区 发布时间: 20181105
...change(function (){ var file = new FileReader();//读取文件2进制 file.onload = function(e){ var base64 = e.target.result; var img = new Image();//创建一个图片对象 img.onload = function (){ var canvas = $("#canvas").get(0); var ctx = canvas.getContext("2d"); //使用drawImage显示图片...
来源: Laya_社区 发布时间: 20170111
...olor="#EEFFCC"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { list=new List(); Laya.stage.addChild(list); list.itemRender=Item; list.repeatX=1; list.repeatY=6; list.x=((Laya.stage.width-Item.WID)/2); list.y=((Laya.stage....
来源: Laya_社区 发布时间: 20170626
...url: "images/读取封面.jpg", type: Loader.IMAGE}], Handler.create(this, onLoaded)); 目前只能一张张的图片进行加载 2017-08-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞...
来源: Laya_社区 发布时间: 20170815
..."res/atlas/char_wudang01.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); this.onLoaded(); } private function onLoaded():void { //Animation.createFrames(["res/atlas/monsterbeattack/0.png","res/atlas/monsterbeattack/1.png","res/atlas/monsterbeattack/2.png"], "aa") Animation.createFrames(...
来源: Laya_社区 发布时间: 20170220
...("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除...
来源: Laya2.0_文档 发布时间: 20210715
...in.min.js:1 Uncaught TypeError: BackGround is not a constructor at t.onLoaded (main.min.js:1) at t.onLoaded2 (main.min.js:1) at e.run (laya.core.min.js:1) at e.i.event (laya.core.min.js:1) at e.n._endLoad (laya.core.min.js:6) at e (laya.core.min.js:6) at e.&...
来源: Laya_社区 发布时间: 20180412