我有進出在連續的循環使用此代碼動畫一個div:jQuery的加入懸停動畫
$(document).ready(function() {
setInterval(function() {
$("#possum-animate").animate({
bottom:"32"
}, 3000).delay(10000).animate({
bottom:"-70"
}, 3000).delay(10000);
}, 10000);
});
我如何添加一個懸停功能,因此,如果您將鼠標懸停在div它完成動畫顯示,然後當您將鼠標懸停在外時隱藏div並再次啓動連續循環。
你檢查這個環節呢? http://api.jquery.com/mouseout/ – Tanmay 2013-04-22 04:53:28