mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
// fade in images
|
|
function imgFade(obj, time = 200) {
|
|
setTimeout(() => {
|
|
obj.style.animation = `imgFadeIn ${time}ms`;
|
|
|
|
setTimeout(() => {
|
|
obj.style.opacity = null;
|
|
obj.style.animation = null;
|
|
}, time);
|
|
}, 1);
|
|
}
|