yay website

This commit is contained in:
sundae 2025-06-11 09:36:54 +03:00
parent 623e26a808
commit 4d44fd94a2
No known key found for this signature in database
585 changed files with 5066 additions and 0 deletions

13
_src/assets/js/cat.js Normal file
View file

@ -0,0 +1,13 @@
let pipe = document.getElementById("meow");
pipe.addEventListener("mouseover", func, true);
function func() {
pipe.src = "/assets/img/button/braixdragon-cat2.gif";
}
let audio = document.createElement("audio");
audio.src = "/assets/Destruction_Metal_Pole_L_Wave_2_0_0.wav";
document.body.appendChild(audio);
pipe.addEventListener("mouseover", function () {
setTimeout(() => {
audio.play();
}, 1700);
}, { once: true });