2
$(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
上時,它會從300px
的高度(在CSS中設置)開始,並將其設置爲高度400px
。如何在懸停高度變化時爲此添加延遲?
我想稍有延遲,使
- 人們不得不懸停在它的第二個,然後再運行和
- 你必須關閉它移到了第二它可以追溯到 前
300px
。