Deploy: Fri May 15 14:02:26 UTC 2026
This commit is contained in:
commit
884ab01739
900 changed files with 23978 additions and 0 deletions
13
docs/static/scripts/88x31.js
vendored
Normal file
13
docs/static/scripts/88x31.js
vendored
Normal 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");
|
||||
})
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue