Answers for "css animation one time"

CSS
0

css animation infinite loop

div {
  animation-iteration-count: number|infinite|initial|inherit;
}
Posted by: Guest on October-18-2020
0

css animation once

a:hover {
        animation: hover 200s infinite alternate ease-in-out;
    }

@keyframes hover {
    0% {
        transform: scale(1, 1);
    }
    1% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1.1, 1.1);
    }
}
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language