Answers for "css only do animation once"

CSS
2

how to make animation stay on 100%

animation-fill-mode:forwards;
Posted by: Guest on April-04-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