我有一個容器,持有3個標籤,當點擊一個標籤,容器得到一個新的類 - 當它獲得類,它改變了CSS中的backgroundImage,它改變了在標籤容器中的內容 - 我的問題是背景圖像它相當沉重,它的PNG文件,因爲我需要的透明度,所以我不能將它們更改爲JPG的左右...jquery負載預加載背景圖像
所以我想知道如果有是一種方式,我可以預先加載背景圖像,然後更改tab容器中的內容,也許使用.load()函數或類似的東西?我到目前爲止的腳本是:
$(".tabs-content div.tabpage").hide(); // Initially hide all content
$(".tabs li:first").attr("id", "current"); // Activate first tab
$(".tabs-content div:first").fadeIn(); // Show first tab content
$('.tab-container a').click(function(e) { //If only tabs, change to .tabs a
e.preventDefault();
var className = $(this).attr("name")
$(document).find(".tab-container").attr("class", "grid_9 tab-container " + className);
if ($(this).closest("li").attr("id") == "current") { //detection for current tab
return
} else {
$(".tabs-content div.tabpage").hide(); //Hide all content
$(".tabs li").attr("id", ""); //Reset id's
$(this).parent().attr("id", "current"); // Activate this
$('#' + $(this).attr('name')).fadeIn(); // Show content for current tab
}
});
檢查此http://stackoverflow.com/questions/476679/preloading-images-with-jquery,它不必作爲背景圖像預加載。預加載它,然後將它作爲背景圖片應用會很好。只需將它們預加載到任何功能之外,便可立即進行預加載。 – smerny
呃,在那裏有一千個答案:)哪一個是正確的? :) – nuffsaid
他們中的大多數人可能會工作,嘗試與票最多的人。 – smerny