我有一个我一直在处理的脚本,我需要它淡入并向上移动它的高度。如果我删除 .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="" 方法,下面是我迄今为止的完整代码,谢谢。