※ 本文轉寄自 tomin.bbs@tomin.twbbs.org
標題 Preloading Images
時間 2011/02/28 Mon 18:54:43
http://engineeredweb.com/blog/09/12/preloading-images-jquery-and-javascript
(function($) {
var cache = [];
// Arguments are image paths relative to the current page.
$.preLoadImages = function() {
var args_len = arguments.length;
for (var i = args_len; i--;) {
var cacheImage = document.createElement('img');
cacheImage.src = arguments[i];
cache.push(cacheImage);
}
}
})(jQuery)
Related:
http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/
http://plugins.jquery.com/project/Preload
--
--
看板 coding
作者 標題 Preloading Images
時間 2011/02/28 Mon 18:54:43
http://engineeredweb.com/blog/09/12/preloading-images-jquery-and-javascript
(function($) {
var cache = [];
// Arguments are image paths relative to the current page.
$.preLoadImages = function() {
var args_len = arguments.length;
for (var i = args_len; i--;) {
var cacheImage = document.createElement('img');
cacheImage.src = arguments[i];
cache.push(cacheImage);
}
}
})(jQuery)
Related:
http://www.gayadesign.com/diy/queryloader-preload-your-website-in-style/
http://plugins.jquery.com/project/Preload
--
◤◥ Origin: Loess Plateau˙黃土高原 tomin.twbbs.org
◣◢ Author: tomin 從 tomin.mdorm.ntnu.edu.tw 發表
--
※ 看板: tomin 文章推薦值: 0 目前人氣: 0 累積人氣: 18
回列表(←)
分享