Css animations - animation is slow and jiggles
问题 I wanted to ask, what is wrong with this CSS code? It is used to animate background image - zoom effect. @media (min-width: 1000px) { .anim-on { background-size: 110% 110%; background-position: center center; animation: shrink 12s infinite alternate; } .anim-out { background-size: 120% 120%; background-position: center center; animation: small 6s infinite alternate; } @keyframes shrink { 0% { background-size: 110% 110%; } 100% { background-size: 100% 100%; } } @keyframes small { 0% {