原生无依赖,预加载插件
插件名:f-preload
实现的主要功能:
1、批量预加载多个图片
2、支持debug打印加载信息
3、支持加载完执行自定义回调函数
项目github地址https://github.com/ifir/f-preload各位客官赏个star,表示很开心
如何使用
1、页面引入
<script src="youpath/f-preload.js"></script>
var Fpreload = new Fpreload({
source: Array, //图片src数组(required)
debug : Boolean, //默认false
callback : Function //默认null
});
or:
2、npm安装
npm install --save f-preload
var Fpreload = require('f-preload');
var preload = new Fpreload({
source: Array, //图片src数组(required)
debug : Boolean, //默认false
callback : Function //默认null
});
原理解释:
一句话解释:利用img.src发起http请求
看看核心代码
imgloader:function(){
var _this = this,
img = [],
source = _this.source,
sucNum = _this.sucNum;
_this.asyncNum = 0;//计数器
for(var i = 0; i < _this.length; i++){
//实例
img[i] = new Image();
//加载
img[i].src = source[i];
//加载完成
img[i].onload = function(){
_this.sucNum++;
_this.asyncNum++;
if(_this.sucNum == _this.length){
if(typeof _this.callback === 'function'){
_this.callback();
}else{
console.log('Preloader Complete');
}
}
//log打印
_this.debug && _this.msglog();
};
//加载失败
img[i].onerror = function(){
_this.errNum++;
_this.asyncNum++;
_this.errArr.push(this.src);
//log打印
_this.debug && _this.msglog();
}
}
}
这里说明一下onload指图片加载完成,onerror不解释,还要说明一下onload是异步的,为了debug模式在所有的图片onload和onerror之后在打印加载图片的信息。还有自定义回调函数只有在所有图片都加载成功才会执行,而不是一张图片加载成功就执行。
debug模式用开发时记录图片的加载信息
console.log很熟悉吧,下面的不知道的赶紧度娘一下吧
console.group
console.time
console.info
console.warn
console.error
预告
下篇文章就写这个插件f-lazyload,我已经写了差不多了,是个懒加载插件
具体细节先去github看一吧[f-lazyload仓库](https://github.com/ifir/f-lazyload)
重要的事情说三遍star,star,star你的支持就是动力
网友评论