Reverse a CSS animation

前端 未结 3 699
故里飘歌
故里飘歌 2021-01-22 15:15

I did this: http://codepen.io/yayoni/pen/pgXoWY

And I want to reverse the animation when I click on the small button but what I did doesnt work and I don\'t understand w

3条回答
  •  情深已故
    2021-01-22 15:55

    Try:

    @keyframes exampleux {
    0%   
    {
        background-color: green; left:0px; top:0px; /* You need to add this */
    }
    
    100% 
    {
        background-color: red; left:0px; top:0px;
    }
    }
    

提交回复
热议问题