Skip to content

Instantly share code, notes, and snippets.

@indiorlei
Forked from alirezas/fade.js
Created May 15, 2020 17:27
Show Gist options
  • Save indiorlei/dc28c67a57bd34ee906577dca2262c25 to your computer and use it in GitHub Desktop.
Save indiorlei/dc28c67a57bd34ee906577dca2262c25 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