Skip to content

Instantly share code, notes, and snippets.

View dumorando's full-sized avatar
🐢
54ny78as78vfdhuf

dumorando dumorando

🐢
54ny78as78vfdhuf
View GitHub Profile
@chrisbuttery
chrisbuttery / 1.js
Last active April 6, 2024 16:10
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;