尊敬的专家,
我有个问题。我是 Jquery 的新手,我正在尝试根据下面给出的示例代码使用 div 动画。发生的情况是,当鼠标在 div 上短时间悬停时,动作会自我复制并导致我想以某种方式避免的可用性行为。有没有办法让功能检查鼠标行为,例如 div 在给定的时间内悬停以避免不必要的多次激活?我希望我解释得足够好。
感谢您的输入。
$(document).ready(function() {
$("#expand_smoke").hover(
//on mouseover
function() {
$(this).animate({
height: '+=125' //adds 125px
}, 'slow' //sets animation speed to slow
);
},
//on mouseout
function() {
$(this).stop()
$(this).animate({
height: '60' //changes back to 60px
}, 'slow'
);
}
);
});