Here is the code that I want to change:
$("#header_nav").mouseenter(function(){
$('#header_nav').stop().animate({
height:'50px'
},600);
});
$("#header_nav").mouseleave(function(){
$('#header_nav').stop().animate({
height:'100px'
},600);
});
http://jsfiddle.net/JJ8Jc/318/
Question: How to set the stop time (the time when the area is not responding if you hover on it)?
Thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…