MediaWiki:Main Page.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
observer.observe(footer); | observer.observe(footer); | ||
document.addEventListener("DOMContentLoaded", () => { | |||
const link = document.querySelector('a[href="/wiki/File:Doomguy.gif"]'); | |||
if (!link) return; | |||
link.addEventListener("click", (e) => { | |||
e.preventDefault(); // stop navigation | |||
let audio = document.getElementById("SickTunes"); | |||
if (!audio) { | |||
audio = document.createElement("audio"); | |||
} | audio.id = "SickTunes"; | ||
} | audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav"; | ||
audio.preload = "auto"; | |||
document.body.appendChild(audio); | |||
} | |||
if (audio.paused) { | |||
audio.play(); | |||
} else { | |||
audio.pause(); | |||
} | |||
}); | |||
}); | |||
Revision as of 01:12, 13 March 2026
const footer = document.querySelector('#footer');
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
document.body.classList.add('footer-visible');
} else {
document.body.classList.remove('footer-visible');
}
});
});
observer.observe(footer);
document.addEventListener("DOMContentLoaded", () => {
const link = document.querySelector('a[href="/wiki/File:Doomguy.gif"]');
if (!link) return;
link.addEventListener("click", (e) => {
e.preventDefault(); // stop navigation
let audio = document.getElementById("SickTunes");
if (!audio) {
audio = document.createElement("audio");
audio.id = "SickTunes";
audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav";
audio.preload = "auto";
document.body.appendChild(audio);
}
if (audio.paused) {
audio.play();
} else {
audio.pause();
}
});
});