我正在创建一个作品集,当您将鼠标悬停在一个工作示例上时,标题出现在顶部,然后动画到该特定工作示例的底部。在 mouseOut 上,我希望标题动画回到顶部然后消失。我对下面代码的问题是,只要我 mouseOut 标题就会消失,而不会将动画显示回顶部。我需要以某种方式链接它吗?
$('div.recentWork').hover(
function(){
$(this).find('.showTitle').animate({marginTop: "150px"});
$(this).find('.showTitle').css({display: "block", background: "black"});
},
function(){
$(this).find('.showTitle').animate({marginTop: "0px"});
$(this).find('.showTitle').css({display: "none"});
}
);