+ 2
Please help me change the bar backward as an animation
3 odpowiedzi
+ 2
Ok It’s actually very easy took me 5 minutes 
@keyframes all{
    0%{
         left:26px;
        top:-7px;
    }
    25%{
       left:18px;
        top:1px;
    }
    50%{
        left:12px;
        top:5px;
    }
    75%{
         left:6px;
        top:10px;
        
    }
    100%{
        left:-3px;
        top:15px;
       
    }
}
change this in your css code
Glad to help!
0
Thanks alot man
0
Glad to help I am here if you need anything



