jquery animate动画持续运动的实例
作者:蓓蕾心晴
下面小编就为大家分享一篇jquery animate动画持续运动的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
如下所示:
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动画持续运动的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- JQuery animate动画应用示例
- jQuery封装animate.css的实例
- jQuery中animate()的使用方法及解决$(”body“).animate({“scrollTop”:top})不被Firefox支持的问题
- jQuery animate()实现背景色渐变效果的处理方法【使用jQuery.color.js插件】
- 浅谈原生JS实现jQuery的animate()动画示例
- jQuery实现立体式数字动态增加(animate方法)
- jQuery中animate的几种用法与注意事项
- jQuery使用animate实现ul列表项相互飘动效果示例
- 利用jQuery的动画函数animate实现豌豆发射效果
- 原生js实现jquery函数animate()动画效果的简单实例
- 详解jQuery的animate动画方法及动画排队问题解决