如何在用户徘徊后杀死.animate()?

时间:2010-09-04 12:11:16

标签: jquery

代码:

//create the animation.
  $('img#header').hover(function(){
  $(this).animate({"top": "-10px" }, "slow");

我正在尝试让悬停停止并在用户将图像悬停时恢复正常。我让动画工作,只是当我徘徊时。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

$('img#header').hover(function()
{
    $(this).animate({"top": "-10px" }, "slow");
}, function()
{
    $(this).animate({"top": "0"}, "slow");
});