我试图在鼠标悬停事件期间让div从当前位置上下移动 - 我有跟随但它只能工作一次然后停止而不是继续骑自行车?
tiptitle.stop(true, true).animate({
'top': '5px'
}, 100).stop(true, true).animate({
'top': '0px'
}, 100);
答案 0 :(得分:2)
进行无限循环
function animate(isOpen) {
tiptitle.stop().animate({'top': isOpen ? '5px' : '0px'}, 100, function() { animate(!isOpen); })
}