jQuery封装图片预加载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery封装图片预加载相关的知识,希望对你有一定的参考价值。

(function($) {
function preLoad(imgs, options) {
this.imgs = (typeof imgs === ‘string‘) ? [imgs] : imgs;
this.opts = $.extend({}, preLoad.DEFAULTS, options);
this._unoredered();

}
preLoad.DEFAULTS = {
each: null, //每一张图片加载后执行
all: null //全部图片加载后执行

};
preLoad.prototype._unoredered = function() {
var imgs = this.imgs,
opts = this.opts,
count = 0,
len = imgs.length;
$.each(imgs, function(i, src) {
if(typeof src != ‘string‘) return;
var imgObj = new Image();

imgObj.src = src;
$(imgObj).on(‘load‘, function() {
opts.each && opts.each(count);
if(count >= len - 1) {
opts.all && opts.all();

}
count++;
});

});
};
$.extend({
preload: function(imgs,opts) {
new preLoad(imgs, opts);
}
})

})(jQuery)

以上是关于jQuery封装图片预加载的主要内容,如果未能解决你的问题,请参考以下文章

jquery实现图片预加载

jquery 图片预加载

图片预加载

闭包,jQuery插件的写法:图片预加载

封装了个图片预加载 · KYLE‘S BLOG

Preload图片预加载(jQuery插件)