时间:2021-07-01 10:21:17 帮助过:6人阅读
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();
如上,想要实现左右持续运动,则把该动画封装为一个函数,再反复调用就好。
看起来是不是很简单就能实现。
相关推荐;
css的animation动画的使用教程
jQuery动画与特效详解
CSS3中动画技术的实现步骤
以上就是jquery animate动画持续运动的实例的详细内容,更多请关注Gxl网其它相关文章!