Skip to content

Instantly share code, notes, and snippets.

@Sanabria
Forked from alirezas/fade.js
Created January 16, 2019 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sanabria/cfed083077ed00026dd95741653fbe26 to your computer and use it in GitHub Desktop.
Save Sanabria/cfed083077ed00026dd95741653fbe26 to your computer and use it in GitHub Desktop.
fadeIn & fadeOut in vanilla js
function fadeOut(el){
el.style.opacity = 1;
(function fade() {
if ((el.style.opacity -= .1) < 0) {
el.style.display = "none";
} else {
requestAnimationFrame(fade);
}
})();
};
function fadeIn(el, display){
el.style.opacity = 0;
el.style.display = display || "block";
(function fade() {
var val = parseFloat(el.style.opacity);
if (!((val += .1) > 1)) {
el.style.opacity = val;
requestAnimationFrame(fade);
}
})();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment