当前位置:主页 > 网页前端 > jquery >

jquery animate动画持续运动的实例

时间:2021-07-15 09:28:04 | 栏目:jquery | 点击:

如下所示:

function fingers(){
  $(".box01 .fingers").animate({"width":"7.5rem","marginLeft":"-3.75rem"},500,function(){
  $(".box01 .fingers").animate({"width":"6.8rem","marginLeft":"-3.4rem"},500,fingers());
  });
 }
fingers();

如上,想要实现左右持续运动,则把该动画封装为一个函数,再反复调用就好。

您可能感兴趣的文章:

相关文章