Answers for "scaled meaning in animation and how it works html css"

CSS
0

scaled meaning in animation and how it works html css

@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
Posted by: Guest on October-21-2020

Code answers related to "scaled meaning in animation and how it works html css"

Browse Popular Code Answers by Language