Skip to content

Instantly share code, notes, and snippets.

@Fejiro001
Last active November 9, 2023 18:33
Show Gist options
  • Save Fejiro001/2c4d70d4dbb205d641562ada8eb97a42 to your computer and use it in GitHub Desktop.
Save Fejiro001/2c4d70d4dbb205d641562ada8eb97a42 to your computer and use it in GitHub Desktop.
Adds an animation style from CSS file to an image in a button anytime the button is clicked
button.addEventListener('click', () => {
// adds animation anytime the button is clicked
setTimeout(() => {
buttonImage.classList.add("cssClass");
}, 20);
buttonImage.classList.remove("cssClass");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment