欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery animate动画持续运动的实例

程序员文章站 2022-03-20 21:55:06
如下所示: function fingers(){ $(".box01 .fingers").animate({"width":"7.5rem","marg...

如下所示:

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();

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

以上这篇jquery animate动画持续运动的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。