我正试图在我的格凯中增加一个拖延,以便一旦摩擦离开我的遗嘱检验之后,它将等待3 000个ms,然后关闭。 但它似乎在发挥作用?
我正在使用Jquery 1.6。 min
事先感谢你的帮助和密码
$("#test").hover(function() {
$(this).css({ z-index : 10 });
$(this).addClass("hover").stop()
.animate({
height: 60px
}, 1500);
} , function() {
$(this).css({ z-index : 0 });
$(this).delay(3000);
$(this).removeClass("hover").stop()
.animate({
height: 20px
}, 1500);
});