mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-05 07:44:35 +00:00
- Added hot reload - Added file serve via express - Added cleanup on watch exit
20 lines
No EOL
598 B
JavaScript
20 lines
No EOL
598 B
JavaScript
const images = document.querySelectorAll("[data-image-id]");
|
|
|
|
images.forEach((image) => {
|
|
|
|
const spinner = document.querySelector(`[data-spinner-id="${image.getAttribute("data-image-id")}"]`)
|
|
|
|
if (image.height > 0) {
|
|
image.classList.remove("hidden");
|
|
spinner.classList.add("hidden");
|
|
return
|
|
}
|
|
|
|
image.addEventListener("load", () => {
|
|
console.log("image " + image.getAttribute("data-image-id") + " loaded");
|
|
image.classList.remove("hidden");
|
|
spinner.classList.add("hidden");
|
|
image.removeEventListener("load", this);
|
|
});
|
|
|
|
}); |