How can I get a CSS Animation to play with a JavaScript onClick? I currently have:
.classname { -webkit-animation-name: cssAnimation; -webkit-animation-d
Found solution on css-tricks
const element = document.getElementById('img') element.classList.remove('classname'); // reset animation void element.offsetWidth; // trigger reflow element.classList.add('classname'); // start animation