lightbox類效果爲了讓圖片居中顯示而使用預加載,須要等待徹底加載完畢才能顯示,體驗不佳(如filick相冊的全屏效果)。javascript沒法獲取img文件頭數據,真的是這樣嗎?本文經過一個巧妙的方法讓javascript獲取它。javascript
這是大部分人使用預加載獲取圖片大小的例子:java
var imgLoad = function (url, callback) { var img = new Image(); img.src = url; if (img.complete) { callback(img.width, img.height); } else { img.onload = function () { callback(img.width, img.height); img.onload = null; }; }; };
能夠看到上面必須等待圖片加載完畢才能獲取尺寸,其速度不敢恭維,咱們須要改進。
web應用程序區別於桌面應用程序,響應速度纔是最好的用戶體驗。若是想要速度與優雅兼得,那就必須提早得到圖片尺寸,如何在圖片沒有加載完畢就能獲取圖片尺寸?
十多年的上網經驗告訴我:瀏覽器在加載圖片的時候你會看到圖片會先佔用一塊地而後才慢慢加載完畢,而且不須要預設width與height屬性,由於瀏覽器可以獲取圖片的頭部數據。基於此,只須要使用javascript定時偵測圖片的尺寸狀態即可得知圖片尺寸就緒的狀態。
固然實際中會有一些兼容陷阱,如width與height檢測各個瀏覽器的不一致,還有webkit new Image()創建的圖片會受以處在加載進程中同url圖片影響,通過反覆測試後的最佳處理方式:web
// 更新: // 05.27: 一、保證回調執行順序:error > ready > load;二、回調函數this指向img自己 // 04-02: 一、增長圖片徹底加載後的回調 二、提升性能 /** * 圖片頭數據加載就緒事件 - 更快獲取圖片尺寸 * @version 2011.05.27 * @author TangBin * @see http://www.planeart.cn/?p=1121 * @param {String} 圖片路徑 * @param {Function} 尺寸就緒 * @param {Function} 加載完畢 (可選) * @param {Function} 加載錯誤 (可選) * @example imgReady('http://www.google.com.hk/intl/zh-CN/images/logo_cn.png', function () { alert('size ready: width=' + this.width + '; height=' + this.height); }); */ var imgReady = (function () { var list = [], intervalId = null, // 用來執行隊列 tick = function () { var i = 0; for (; i < list.length; i++) { list[i].end ? list.splice(i--, 1) : list[i](); }; !list.length && stop(); }, // 中止全部定時器隊列 stop = function () { clearInterval(intervalId); intervalId = null; }; return function (url, ready, load, error) { var onready, width, height, newWidth, newHeight, img = new Image(); img.src = url; // 若是圖片被緩存,則直接返回緩存數據 if (img.complete) { ready.call(img); load && load.call(img); return; }; width = img.width; height = img.height; // 加載錯誤後的事件 img.onerror = function () { error && error.call(img); onready.end = true; img = img.onload = img.onerror = null; }; // 圖片尺寸就緒 onready = function () { newWidth = img.width; newHeight = img.height; if (newWidth !== width || newHeight !== height || // 若是圖片已經在其餘地方加載可以使用面積檢測 newWidth * newHeight > 1024 ) { ready.call(img); onready.end = true; }; }; onready(); // 徹底加載完畢的事件 img.onload = function () { // onload在定時器時間差範圍內可能比onready快 // 這裏進行檢查並保證onready優先執行 !onready.end && onready(); load && load.call(img); // IE gif動畫會循環執行onload,置空onload便可 img = img.onload = img.onerror = null; }; // 加入隊列中按期執行 if (!onready.end) { list.push(onready); // 不管什麼時候只容許出現一個定時器,減小瀏覽器性能損耗 if (intervalId === null) intervalId = setInterval(tick, 40); }; }; })();
調用例子:瀏覽器
imgReady('http://www.google.com.hk/intl/zh-CN/images/logo_cn.png', function () { alert('size ready: width=' + this.width + '; height=' + this.height); });
是否是很簡單?這樣的方式獲取攝影級別照片尺寸的速度每每是onload方式的幾十多倍,而對於web普通(800×600內)瀏覽級別的圖片能達到秒殺效果。看了這個再回憶一下你見過的web相冊,是否絕大部分均可以重構一下呢?好了,請觀賞使人愉悅的 DEMO : 緩存
http://www.planeart.cn/demo/imgReady/函數
(經過測試的瀏覽器:Chrome、Firefox、Safari、Opera、IE六、IE七、IE8)性能