我不知道出了什么问题,请帮忙。
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);
});
});