How to create bouncing div animation

后端 未结 7 742
臣服心动
臣服心动 2021-02-01 19:12

I\'m trying to re-create the bouncing arrow animation like on: http://www.codecomputerlove.com/ but it\'s not going well...

The closest I\'ve got with trying to use the

7条回答
  •  忘掉有多难
    2021-02-01 19:45

    With the same code you provided, just replace the javascript with this js code.

        $(document).ready(function() {
    
    
    
          function doAnimation()
    {
             $(".target").effect( "bounce", {times:3}, 300, doAnimation);
    }
    
    doAnimation();
    
       });
       
    

提交回复
热议问题