代码:
//create the animation.
$('img#header').hover(function(){
$(this).animate({"top": "-10px" }, "slow");
我正在尝试让悬停停止并在用户将图像悬停时恢复正常。我让动画工作,只是当我徘徊时。有什么帮助吗?
答案 0 :(得分:0)
$('img#header').hover(function()
{
$(this).animate({"top": "-10px" }, "slow");
}, function()
{
$(this).animate({"top": "0"}, "slow");
});