我已經制作了這段代碼。當我將鼠標懸停在一個框上時,它會更改背景圖像。 但是,我想要進入的圖片淡入。我該怎麼做? :)Jquery褪色圖像交換
$(document).ready(function(){
$("#box1").mouseover(function(){
$("#background").addClass("hover1");
$("#content").html(box1);
});
$("#box1").mouseout(function(){
$("#background").removeClass("hover1");
$("#content").html(content);
});
});
謝謝.. :) 我會試試看。 – Adnaves
當然,這將是很好,如果你分享你的經驗以及:) – Tanveer