有没有办法在 jQuery中停止fadeOut()
动画?mouseleave
我希望脚本像这样工作:
- 1:当用户将鼠标悬停在文本上时,显示一个 div
- 2:当用户将鼠标移出文本时隐藏div,但如果用户将鼠标悬停在容器上,则div必须继续显示!
这就是我的工作:
$(document).ready(function(){
$('.this').hover(function(){
$('#container').fadeIn(200);
}).mouseleave(function(){
setTimeout(function () {
$('#container').fadeOut(200);
}, 1000);
})
$('#container').hover(function(){
$('#container').stop().show();
})
});