我已经制作了这段代码。当我将鼠标悬停在一个框上时,它会更改背景图像。但是,我希望进来的图片淡入淡出。我该怎么做?:)
$(document).ready(function(){
$("#box1").mouseover(function(){
$("#background").addClass("hover1");
$("#content").html(box1);
});
$("#box1").mouseout(function(){
$("#background").removeClass("hover1");
$("#content").html(content);
});
});