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