Initial Commit

This commit is contained in:
Purplebored
2023-09-14 23:51:57 +02:00
commit 715fa3528d
21 changed files with 593 additions and 0 deletions

10
easteregg/1.js Normal file
View File

@@ -0,0 +1,10 @@
document.addEventListener("DOMContentLoaded", function() {
var video = document.querySelector("video");
var instruction = document.getElementById("instruction");
document.addEventListener("click", function() {
video.play();
video.muted = false;
instruction.style.display = "none";
});
});