第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

預(yù)加載完成后程序繼續(xù)執(zhí)行,沒有停止請問是什么原因?

http://img1.sycdn.imooc.com//5a7bf011000191d206460396.jpg

http://img1.sycdn.imooc.com//5a7bf01200016c0c07550512.jpg

代碼按老師說的敲,求大神指點。。。。


正在回答

1 回答


//圖片預(yù)加載_無序加載

(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._unordered();

}

}

PreLoad.DEFAULTS = {

order: 'unordered', //默認使用無序預(yù)加載

each: null, //每張圖片加載完畢后執(zhí)行

all: null, //所有圖片加載完畢后執(zhí)行

};

PreLoad.prototype._ordered = function() { //有序加載

var opts = this.opts,

imgs = this.imgs,

len = imgs.lenght,

count = 0;

load();

//有序預(yù)加載

function load() {

var imgObj = new Image();

$(imgObj).on('load error', function() {

opts.each && opts.each(cuont);?

if(count >= len) {

//所以圖片已經(jīng)加載完畢

opts.all && opts.all();

} else {

load();

}

count++

});

imgObj.src = imgs[count];

}

},

PreLoad.prototype._unordered = 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).on('load error', function() {

opts.each && opts.each(count);

if(count >= len - 1) {

opts.all && opts.all();

}

count++;

})

imgObj.src = src;

});

};

$.extend({

preload: function(imgs, opts) {

new PreLoad(imgs, opts);

}

})

})(jQuery);


0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報

0/150
提交
取消

預(yù)加載完成后程序繼續(xù)執(zhí)行,沒有停止請問是什么原因?

我要回答 關(guān)注問題
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號