wip figures and images

This commit is contained in:
sundae 2025-06-16 16:31:53 +03:00
parent ea235120f8
commit c6bac45ecf
No known key found for this signature in database
61 changed files with 1491 additions and 1315 deletions

15
_src/assets/js/bob.js Normal file
View file

@ -0,0 +1,15 @@
let bob = document.getElementById("bob");
let help = document.createElement("audio");
help.src = "/assets/audio/bob.ogg";
help.loop = true;
bob.appendChild(help);
window.addEventListener("load", function () {
help.play();
help.muted = true;
});
bob.onmouseover = () => {
help.muted = false;
};
bob.onmouseout = () => {
help.muted = true;
};