Skip to content

Instantly share code, notes, and snippets.

@bcherny
Last active June 2, 2018 19:36
Show Gist options
  • Select an option

  • Save bcherny/1dd4bffd7daabd2f18dd159ecbdd1457 to your computer and use it in GitHub Desktop.

Select an option

Save bcherny/1dd4bffd7daabd2f18dd159ecbdd1457 to your computer and use it in GitHub Desktop.
<div onmouseover="hoverslick()" onmouseout="nonhoverslick()">
<p class="Noanimation">I can</p>
<p class="Noanimation">also do</p>
<p class="Noanimation">slick animations</p>
<script>
function hoverslick() {
document
.querySelectorAll(".Noanimation")
.forEach(function(animationtxt) {
animationtxt.classList.add("Animation");
})
}
</script>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment