我正在研究 jQuery 函数,我有一个在触发 mouseover 事件时工作的函数,但我的要求是它不应该在鼠标悬停时调用,它应该每 5 秒调用一次,但我无法实现这一点。如何解决这个问题?
我已经添加了片段供您参考..
f.children(a.childSelector).each(function(h) {
jQuery(this).mouseover(function(i) {
var j = (a.reflect === true) ? 360 - (g * h) : g * h;
j = jQuery.roundabout_toFloat(j);
if (!jQuery.roundabout_isInFocus(f, j)) {
i.preventDefault();
if (f.data("roundabout").animating === 0) {
f.roundabout_animateAngleToFocus(j)
}
return false
}
})
})