Add misc section with full per-page strings translation support, 88x31 page and bookmarks page.

This commit is contained in:
天クマ 2026-04-21 14:33:42 -03:00
commit 74285e314d
89 changed files with 291 additions and 9 deletions

13
static/scripts/88x31.js Normal file
View file

@ -0,0 +1,13 @@
const images = document.querySelectorAll(".i88x31");
images.forEach(image => {
image.addEventListener("click", () => {
const selected = document.querySelectorAll(".i88x31.selected");
selected.forEach(s => {
if (s != image) {
s.classList.toggle("selected");
}
})
image.classList.toggle("selected");
})
})