Skip to content

Instantly share code, notes, and snippets.

View sajermann's full-sized avatar
💻
Working From Home!

Bruno Sajermann sajermann

💻
Working From Home!
View GitHub Profile
@alirezas
alirezas / fade.js
Created February 13, 2017 10:54
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);
}
})();