$(function(){
$("#top-img").hover(function(){
$(this).stop().animate({height:"400px"},{queue:false,duration:700});
},
function() {
$(this).stop().animate({height:"300px"},{queue:false,duration:700});
});
});
这是我正在使用的代码,大部分都很简单。当我将鼠标悬停在 div#top-img
上时,它会从高度(在 CSS 中设置)将其设置300px
为400px
.
我想稍微延迟一下,以便
- 人们必须在它运行前悬停一秒钟,然后
- 你必须先离开它一秒钟,然后它才能回到
300px
.