Answers for "animation width 0 to 100"

CSS
2

how to make animation stay on 100%

animation-fill-mode:forwards;
Posted by: Guest on April-04-2020
0

css change width animation

-webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
Posted by: Guest on September-23-2021

Browse Popular Code Answers by Language