0
我已經得到了這個腳本,我一直在努力,我需要它淡入,並通過它的高度向上移動。如果我刪除.animate()它會淡入,所以我猜那裏有錯誤。如何動畫一個div出現並移動到另一個div上
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();
});
}
我必須使用的onmouseover的老式方法=「」在HTML和下面是我完整的代碼,到目前爲止,謝謝。
http://jsfiddle.net/silverlight513/KuJkY/