$('.box').hover(function () {
$(this).stop().animate({
width: '200px',
height: '200px',
top: '-70px'
}, 500),
function () {
$(this).stop().animate({
width: '30px',
height: '30px',
top: '0'
});
};
});
在这种情况下,鼠标悬停展开框将其带回...但是动画回调不起作用..我错在哪里?