// 图片预加载
(function ($) {
function PreLoad(imgs, options) {
this.imgs = (typeof imgs === 'string') ? [imgs] : imgs;
this.opts = $.extend({}, PreLoad.DEFAULTS, options);
if (this.opts.order === 'ordered') {
this._ordered();
} else {
this._unoredered();
}
}
PreLoad.DEFAULTS = {
// 无序预加载
order: 'unordered',
// 每一张图片加载完毕后执行
each: null,
// 所有图片加载完毕后执行
all: null
};
// 有序加载
PreLoad.prototype._ordered = function () {
var opts = this.opts;
var imgs = this.imgs;
var len = imgs.length;
var count = 0;
function load() {
var imgObj = new Image();
$(imgObj).on('load error', function () {
opts.each && opts.each(count);
if (count >= len) {
// 所有图片加载完毕
opts.all && opts.all();
} else {
load();
}
count++;
});
imgObj.src = imgs[count];
}
// 调用函数
load();
},
// 无序加载
PreLoad.prototype._unoredered = function () {
var imgs = this.imgs;
var opts = this.opts;
var count = 0;
var len = imgs.length;
$.each(imgs, function (i, src) {
if (typeof src != 'string') {
return
}
var imgObj = new Image();
$(imgObj).on('load error', function () {
opts.each && opts.each(count);
if (count >= len - 1) {
opts.all && opts.all();
}
count++;
});
imgObj.src = src;
});
}
// 两种插件的不同调用方式
// 1、$.fn.extend ==> $('#img').preload()
// 2、$.extend ==> $.preload()
$.extend({
preload: function (imgs, opts) {
new PreLoad(imgs, opts);
}
});
})(jQuery)
图片预加载插件例子
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...