![${
+ 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);
+ });
}
}
diff --git a/static/tailwind.css b/static/tailwind.css
index a677a60..ab6e15c 100644
--- a/static/tailwind.css
+++ b/static/tailwind.css
@@ -600,6 +600,18 @@ video {
inset: 0px;
}
+.top-0 {
+ top: 0px;
+}
+
+.top-16 {
+ top: 4rem;
+}
+
+.top-8 {
+ top: 2rem;
+}
+
.-z-10 {
z-index: -10;
}
@@ -629,6 +641,10 @@ video {
display: flex;
}
+.grid {
+ display: grid;
+}
+
.hidden {
display: none;
}
@@ -873,6 +889,30 @@ video {
transition-duration: 150ms;
}
+.\[grid-template-columns\:repeat\(1\2c minmax\(0\2c 1fr\)\)\] {
+ grid-template-columns: repeat(1,minmax(0,1fr));
+}
+
+.\[grid-template-columns\:repeat\(auto-fill\2c minmax\(128px\2c 256px\)\)\] {
+ grid-template-columns: repeat(auto-fill,minmax(128px,256px));
+}
+
+.\[grid-template-columns\:repeat\(auto-fill\2c minmax\(128px\2c 372px\)\)\] {
+ grid-template-columns: repeat(auto-fill,minmax(128px,372px));
+}
+
+.\[grid-template-columns\:repeat\(auto-fill\2c minmax\(128px\2c 512px\)\)\] {
+ grid-template-columns: repeat(auto-fill,minmax(128px,512px));
+}
+
+.\[grid-template-columns\:repeat\(auto-fill\2c minmax\(128px\2c 512pxpx\)\)\] {
+ grid-template-columns: repeat(auto-fill,minmax(128px,512pxpx));
+}
+
+.\[grid-template-columns\:repeat\(auto-fill\2c minmax\(128px\2c 512x\)\)\] {
+ grid-template-columns: repeat(auto-fill,minmax(128px,512x));
+}
+
.tiledBackground {
background-image: url('images/background-white.png');
background-repeat: repeat;
@@ -894,6 +934,14 @@ video {
top: 25%;
}
+ .md\:top-64 {
+ top: 16rem;
+ }
+
+ .md\:top-32 {
+ top: 8rem;
+ }
+
.md\:w-\[600px\] {
width: 600px;
}