判斷頁面全部圖片加載完成後執行操做

       $(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]);
	})
相關文章
相關標籤/搜索