css animation zoom in out infinite

Solutions on MaxInterview for css animation zoom in out infinite by the best coders in the world

showing results for - "css animation zoom in out infinite"
Samuel
28 Jul 2019
1.examplediv {
2  height: 500px;
3  width: 500px;
4  animation: zoom-in-zoom-out 5s ease-in infinite;
5}
6
7@keyframes zoom-in-zoom-out {
80% {
9transform: scale(1, 1);
10}
1150% {
12transform: scale(1.5, 1.5);
13}
14100% {
15transform: scale(1, 1);
16}
17}
18