$(this).find('.cover').css('top', +$(this).height());
$(this).hover(function(){
$(this).find('.cover').animate({
'top': '0'
},350);
},function(){
$(this).find('.cover').animate({
'top':$(this).height()
},{
duration: 100,
complete:function(){
$(this).css('top', +$(this).parent('li').height())
}
});
});
});
最佳答案
