Skip to content

Instantly share code, notes, and snippets.

@DmitriyWebDev
Forked from alirezas/fade.js
Created July 28, 2018 18:34
Show Gist options
  • Save DmitriyWebDev/224924d8d797f88f62c8bf9c90fb9b00 to your computer and use it in GitHub Desktop.
Save DmitriyWebDev/224924d8d797f88f62c8bf9c90fb9b00 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