我使用queryLoader2预加载页面。它工作正常,只是我无法获得百分比变量。
在文档中说:
onProgress 功能 加载图像时会调用此函数。 获取参数百分比, imagesLoaded , totalImages 。默认值:无
这是我的代码:
$("body").queryLoader2({
percentage: true,
onProgress: function(percentage, done, total){
console.log(percentage, done, total);
$("body").prepend(percentage);
}
});

img{
width:50px;
}

<script src="https://cdn.jsdelivr.net/g/jquery@3.1.0,jquery.queryloader2@2.3"></script>
<div class="delayer">
<img src="http://deelay.me/200/http://deelay.me/img/1000ms.gif" alt="">
<img src="http://deelay.me/500/http://deelay.me/img/1000ms.gif" alt="">
<img src="http://deelay.me/1200/http://deelay.me/img/1000ms.gif" alt="">
<img src="http://deelay.me/1500/http://deelay.me/img/1000ms.gif" alt="">
<img src="http://deelay.me/1800/http://deelay.me/img/1000ms.gif" alt="">
<img src="http://deelay.me/2200/http://deelay.me/img/1000ms.gif" alt="">
</div>
&#13;
我对它可能是什么一无所知。错误?
答案 0 :(得分:0)
原来我使用的是旧版本(2.3)而不是最新的3.2.2。
白痴:)从gitHub下载最新版本,而不是使用CDN,效果很好。