大约有 1,128 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0075 秒)
URL的代码修改建议 URL.formatURL=function(url,base){ if (!url)return "null path"; //if (url.indexOf(":")> 0)return url; 这里建议是先执行customFormat 再去执行if (url.indexOf(":")> 0)return url; 因为用户可能有特殊的customFormat流程,所以应该是这两句...
来源: Laya_社区 发布时间: 20180713
...音文件失败 在wxmini中关于声音的管理 __proto.load = function (url) { url = URL.formatURL(url); this.url = url; this.readyUrl = url; if (MiniSound._audioCache[this.readyUrl]) { ...
来源: Laya_社区 发布时间: 20180503
...ginLoad)) function beginLoad() { //加载LOADING资源 Laya.loader.load([{ url: "res/atlas/icon.atlas" }, { url: "res/atlas/human.atlas" }], Laya.Handler.create(this, progress, null, false), null, Laya.Loader.ATLAS) } function progress() { (function loading() { Laya.loader.load([{ url: "icon/背包...
来源: Laya_社区 发布时间: 20180710
...e" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(url);[/b] 改为: if (type==="image" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(this._url);[/b] 再修改bin/libs/laya.wxmini.js文件的下面几处即可。 1. 大约793行 if(MiniAdpter.isZiY...
来源: Laya_社区 发布时间: 20190403
...是png就是加载本地了。 这是什么原因~`我看代码了,baseUrl我已经设置成外部的了,怎么还会去会去本地找png图片,但是图集又是用外部的呢 附件 : --> 2020-01-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20200103
读URL parameter https://www.hello.com?index=helloJane 读URL parameter 例如: https://www.hello.com?index=helloJane 把“helloJane”放进页面的text 请问这个怎么做呢? 好像这样, 这个window.location.href 在LayaAirIDE 怎么写呢? var url = window.location.href; va...
来源: Laya_社区 发布时间: 20180706
...aya.init(852, 480, Laya.WebGL); let resArr = [ {url:"wxlocal/enemy.png",type:Laya.Loader.IMAGE}, {url:"wxlocal/bg2.jpg",type:Laya.Loader.IMAGE} ]; Laya.loader.load(resArr, Laya.Handler.create(null, onLoaded)); function onLoaded(): void { ...
来源: Laya_社区 发布时间: 20191122
...rogressUI: 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.progressUI = UIBase.create(LoadProgress.UI_LoadProgress, "LoadProgress", Load...
来源: Laya_社区 发布时间: 20171204
...eVersion; 2、第330-336行,将 MiniFileMgr.isLocalNativeFile=function(url){ for(var i=0,sz=MiniAdpter.nativefiles.length;i<sz;i++){ if(url.indexOf(MiniAdpter.nativefiles)!=-1) return true; } return false; }修改为: MiniFileMgr.isLocalNativeFile=function(url){ for(var i=0,sz=MiniAdpter.na...
来源: Laya_社区 发布时间: 20181212
【BUG】加载的url中有错误url时,laya偶现加载complete不回调 Bug代码如下,当第一个url是错误的,并且是lh类型时,会导致complete回调不走。具体见附件的demo。原因是onerror时没有重置customParse属性为false。 var res3DArr = [ { url: this.error_...
来源: Laya_社区 发布时间: 20180305