在我的div中,它会翻转另一侧,然后另一侧,但是当我以快速方式执行此操作时,它不会恢复到第一个图像,这里是我的js代码。 它翻转了一边,但是当鼠标离开时它没有转换到原来的那个
var isHover = false;
$(".budget_box").mouseenter(function () {
if (isHover == false) {
isHover = true;
$(this).flip({
direction: 'lr',
speed: 300,
content: $(this).find(".budget_box_hover"),
onBefore: function () {
$(this).removeClass('budget_box');
}
});
}
}).mouseleave(function () {
$(this).revertFlip();
$(this).addClass('budget_box');
isHover = false;
});
});