How to create bouncing div animation

后端 未结 7 520
臣服心动
臣服心动 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:42

    PURE CSS way to do this bounce

    Do like this.

    .bounce {
          position:fixed;
          left:50%;
          bottom:0;
          margin-top:-25px;
          margin-left:-25px;
          height:50px;
          width:50px;
          background:red;
          -webkit-animation:bounce 1s infinite;
        }
        
        @-webkit-keyframes bounce {
          0%       { bottom:5px; }
          25%, 75% { bottom:15px; }
          50%      { bottom:20px; }
          100%     {bottom:0;}
        }

提交回复
热议问题