我有一个 div,它使用以下代码在连续循环中进出动画:
$(document).ready(function() {
setInterval(function () {
$("#possum-animate").animate({
bottom:"32"
}, 3000 ).delay(10000).animate({
bottom:"-70"
}, 3000).delay(10000);
}, 10000);
});
如何添加悬停功能,以便在悬停 div 时完成动画显示,然后在悬停时隐藏 div 并再次开始连续循环。