我有以下代码。
$("#social-links a").hover(function()
{
$(this).children('span').show();
$(this).children('span').animate({bottom: '25px', opacity: 1}, 300);
}, function()
{
$(this).children('span').animate({bottom: '0', opacity: 0}, 300);
$(this).children('span').hide();
});
这个想法是跨度标签中的文本淡入并向上移动,然后向下移动并淡出。悬停功能可以正常工作,但是当我将鼠标悬停在链接之外时,淡出跨度的动画似乎不起作用。它确实相应地更改了 CSS,但它似乎没有动画。谁能看看我做错了什么?