私が取り組んでいるこのスクリプトがあり、フェードインして高さだけ上に移動する必要があります。.animate() を削除するとフェードインするので、何か問題があると思います。
function showDesc (){
$(".container-box").hover(function(){
$(this).find(".contain-desc").fadeIn('slow').animate({
'bottom':'130px'
}, {duration: 'slow', queue: false;}
},function(){
$(this).find(".contain-desc").fadeOut();
});
}
HTML で onmouseover="" の昔ながらの方法を使用する必要があります。以下はこれまでの完全なコードです。