0

我试图在鼠标悬停事件期间让 div 从其当前位置上下移动 - 我有跟随但它只工作一次然后停止而不是不断循环?

tiptitle.stop(true, true).animate({
    'top': '5px'
}, 100).stop(true, true).animate({
    'top': '0px'
}, 100);
4

1 回答 1

2

做一个无限循环

function animate(isOpen) {
    tiptitle.stop().animate({'top': isOpen ? '5px' : '0px'}, 100, function() { animate(!isOpen); })
}
于 2013-02-25T16:49:43.713 回答