MediaWiki:Main Page.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 13: | Line 13: | ||
mw.hook('wikipage.content').add(function ($content) { | mw.hook('wikipage.content').add(function ($content) { | ||
$content. | const link = $content.find('a[href="/wiki/File:Doomguy.gif"]'); | ||
link.removeAttr("href"); // stops browser navigation preview | |||
link.on("click", function (e) { | |||
e.preventDefault(); | e.preventDefault(); | ||
let audio = document.getElementById("SickTunes"); | let audio = document.getElementById("SickTunes"); | ||
| Line 33: | Line 35: | ||
audio.pause(); | audio.pause(); | ||
} | } | ||
}); | }); | ||
}); | }); | ||
Revision as of 01:16, 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);
mw.hook('wikipage.content').add(function ($content) {
const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');
link.removeAttr("href"); // stops browser navigation preview
link.on("click", function (e) {
e.preventDefault();
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();
}
});
});