css animation once

Solutions on MaxInterview for css animation once by the best coders in the world

showing results for - "css animation once"
Nicole
19 Aug 2020
1a:hover {
2        animation: hover 200s infinite alternate ease-in-out;
3    }
4
5@keyframes hover {
6    0% {
7        transform: scale(1, 1);
8    }
9    1% {
10        transform: scale(1.1, 1.1);
11    }
12    100% {
13        transform: scale(1.1, 1.1);
14    }
15}