python-gallery/onlylegs/static/js/fade.js
Michał e9e3706172 Move JS to layout HTML for faster loading
Keep images square through JS and not a bug with ::after
2023-04-22 13:45:29 +00:00

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);
}