
$(function(){
var _srcList = [],
i = 0;
//獲取所有圖片路徑,存為數組
$('.bg').each(function(){
_srcList.push($(this).attr('src'));
})
function imgLoadComplate(imgSrc){
var _img = new Image();
_img.src = imgSrc;
_img.onload = function(){
//判斷是否加載到最后一個圖片
if (i < _srcList.length-1) {
i++;
imgLoadComplate(_srcList[i]);
}else{
$('.people3, .people2, .index-word').each(function(i){
$(this).addClass($(this).attr('id') + '-animate');
})
}
}
}
imgLoadComplate(_srcList[i]);
})
