我有以下代码,用于在悬停状态下淡入和淡出。
$(function(){
$("#bottomIco ul li a").hover(function(){
$(this).children("#gray").fadeOut("100",function(){
$(this).parent().children("#actual").fadeIn("100");
});
},function(){
$(this).children("#actual").fadeOut("100",function(){
$(this).parent().children("#gray").fadeIn("100");
});
});
});
它有效,但是当我将鼠标悬停在#gray 中时,出现空白,然后#actual div 出现。
我需要让它平滑,即当我悬停时不需要空白。