我有此標記爲背景圖像:jquery的褪色爲背景圖像
<img src="bg.jpg" id="bg" alt="">
和此CSS:
#bg { position: fixed; top: 0; left: 0; }
#bg {display:none;}
和這個jQuery:
$(document).ready(function(){
$('#bg').load(function() {
$(this).fadeIn('slow');
});
});
基本上它工作,但奇怪的情況是,有時圖像加載,有時不,有時我必須刷新頁面幾次。 看看here看看我在說什麼。
它每次在Firefox 6.0.1上都能正常工作。 –
看看這個:http://stackoverflow.com/questions/1700864/making-images-fade-in-on-image-load-using-jquery –
可以試試$(window).load()...但那麼會出現bg的閃光。 – Chris