Skip to content

Instantly share code, notes, and snippets.

@Shakil-Shahadat
Last active November 22, 2021 14:09
Show Gist options
  • Save Shakil-Shahadat/e71f524049dab2ab3986c313b9cc6182 to your computer and use it in GitHub Desktop.
Save Shakil-Shahadat/e71f524049dab2ab3986c313b9cc6182 to your computer and use it in GitHub Desktop.
Floating box with animation. Demo: https://codepen.io/shakil/pen/BadEgwQ
<div class="info"></div>
document.querySelector( '.info' ).onmouseover = function ()
{
this.style.opacity = 1;
}
document.querySelector( '.info' ).onmouseout = function ()
{
this.style.opacity = 0;
}
.info
{
opacity: 0;
transition: opacity 1s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment