![${
+ data.stickers[0].body
+ }](${getStickerImage(data.stickers[0].id)})
+
![${
data.stickers[0].body
- }](static/images/sticker.png)
+ }" class="object-contain w-24" id="${_tmp_id}-placeholder"/>
${data.title}
${
@@ -93,6 +106,11 @@ async function loadStickerpacks() {
`;
+ const __img = document.getElementById(_tmp_id);
+ __img.addEventListener("load", () => {
+ imageIsLoaded(_tmp_id, `${_tmp_id}-placeholder`);
+ __img.removeEventListener("load", this);
+ });
}
}
@@ -186,10 +204,22 @@ function updatePackInfo(data) {
for (let i = 0; i < data.stickers.length; i++) {
const sticker = data.stickers[i];
const stickerImage = document.createElement("img");
+ const stickerImagePlaceholder = document.createElement("img");
+ stickerImagePlaceholder.src = `static/images/sticker.png`;
+ stickerImagePlaceholder.id = `${sticker.id}-placeholder`;
+ stickerImagePlaceholder.alt = sticker.body;
+ stickerImagePlaceholder.classList.add("object-contain", "md:w-20", "w-24");
+ packStickers.appendChild(stickerImagePlaceholder);
stickerImage.src = getStickerImage(sticker.id);
+ stickerImage.id = sticker.id;
stickerImage.alt = sticker.body;
- stickerImage.classList.add("object-contain", "md:w-20", "w-24");
+ stickerImage.classList.add("object-contain", "md:w-20", "w-24", "hidden");
packStickers.appendChild(stickerImage);
+
+ stickerImage.addEventListener("load", () => {
+ imageIsLoaded(sticker.id, `${sticker.id}-placeholder`);
+ stickerImage.removeEventListener("load", this);
+ });
}
}