Ejemplo:
.button { animation: resizing 2000ms linear infinite alternate; transition: transform 200ms linear; // don't work after animation } @media (hover: hover) { .button:hover { animation: none; transform: scale(1.1); } } @keyframes resizing { 100% { transform: scale(2); } }Por favor, intente reescribir esto como a continuación. Espero que funcione
.button { animation: resizing 2000ms linear infinite alternate; transition: transform 200ms linear; } .button:hover { animation: none; transform: scale(1.1); } @keyframes resizing { 100% { transform: scale(2); } }