ホバー状態でのフェードインとフェードアウトに使用する次のコードがあります。
$(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 が表示されます。
スムーズにする必要があります。つまり、ホバー中に空白になる必要はありません。