Skip to content

Instantly share code, notes, and snippets.

View MoralistFestus's full-sized avatar
💫
Creating tools that aids development

Moralist Festus MoralistFestus

💫
Creating tools that aids development
View GitHub Profile
@MoralistFestus
MoralistFestus / 1.js
Created November 9, 2020 20:31 — forked from chrisbuttery/1.js
Fade in / Fade out
// fade out
function fade(el) {
var op = 1;
var timer = setInterval(function () {
if (op <= 0.1){
clearInterval(timer);
el.style.display = 'none';
}
el.style.opacity = op;