何が悪いのかわかりません、助けてください。
jQuery アニメーションは元に戻りません。
リンク: http://extreme-network.tk/
コード:
$(window).load(function () {
$('#footer').hover(function () {
$(this).stop().animate({
top: "444px"
}, 500);
}, function () {
var width = $(this).height() - 32;
$(this).stop().animate({
bottom: -height
}, 500);
});
});