我有一些代码,基本上可以在鼠标悬停时放大图像,然后在mouseleave上重置。
我唯一的问题是,如果你快速鼠标悬停/离开,该功能会运行并运行并运行很多次。
如果当前正在制作动画,有没有办法防止该功能被触发?
我知道这可以通过CSS完成,但我需要能够支持所有浏览器回IE8,这样就不能选择了(Annoyingly)
谢谢!
$(document).ready(function () {
$('.image img').on("mouseover", function () {
$(this).animate({
height: "110%",
width: "110%",
marginLeft: "-5%",
marginTop: "-5%"
}, 1000);
});
$('.image img').on("mouseleave", function () {
$(this).animate({
height: "100%",
width: "100%",
marginLeft: "0%",
marginTop: "0%"
}, 1000);
});
});
答案 0 :(得分:6)
你必须停止排队动画。应该这样做 -
$(document).ready(function () {
$('.image img').on("mouseover", function () {
$(this)
.stop(true, false)
.animate({
height: "110%",
width: "110%",
marginLeft: "-5%",
marginTop: "-5%"
}, 1000);
});
$('.image img').on("mouseleave", function () {
$(this)
.stop(true, false)
.animate({
height: "100%",
width: "100%",
marginLeft: "0%",
marginTop: "0%"
}, 1000);
});
});
.stop
的第一个参数是clearQueue
,第二个参数是jumpToEnd
答案 1 :(得分:0)
对此的一个解决方案是动态绑定和取消绑定鼠标悬停和鼠标离开功能。要执行此操作,只需从mouseleave
未绑定和mouseover
绑定开始。
在mouseover
正文的开头,绑定mouseleave
并取消绑定mouseover
。
在mouseleave
正文的开头,绑定mouseover
并取消绑定mouseleave
。
这应该可以解决问题。