如何动画箭头

时间:2016-10-27 14:45:16

标签: jquery animation

我正试图用动画制作一个箭头,但似乎无法使其正常工作 保证金最高价为180px 这是我到目前为止的代码:

mean(head(x, 10))

1 个答案:

答案 0 :(得分:0)

尝试在css中设置你的箭头,就像这个位置:亲戚。 现在在你的jquery代码中尝试这个。 callBack函数将使用setInterval为无限循环中的箭头设置动画。

$(document).ready(function() {
function animated() {
    $('div.animated-arrow').animate({top: '50px'},500).animate({top: '120px'},500,animated);
}

animated();

});

希望它会对你有所帮助。