使用jQuery使div动画上下

时间:2013-02-25 16:43:07

标签: javascript jquery

我试图在鼠标悬停事件期间让div从当前位置上下移动 - 我有跟随但它只能工作一次然后停止而不是继续骑自行车?

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

1 个答案:

答案 0 :(得分:2)

进行无限循环

function animate(isOpen) {
    tiptitle.stop().animate({'top': isOpen ? '5px' : '0px'}, 100, function() { animate(!isOpen); })
}