Jump to content

MediaWiki:Main Page.js: Difference between revisions

From Ditzy Wiki
No edit summary
No edit summary
Line 15: Line 15:
   const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');
   const link = $content.find('a[href="/wiki/File:Doomguy.gif"]');


   link.removeAttr("href");
   link.removeAttr("href").css("cursor", "pointer");


   link.on("click", function (e) {
   link.on("contextmenu", function (e) {
     e.preventDefault();
     e.preventDefault();
  });


  link.on("mousedown", function (e) {
     let audio = document.getElementById("SickTunes");
     let audio = document.getElementById("SickTunes");


Line 25: Line 27:
       audio = document.createElement("audio");
       audio = document.createElement("audio");
       audio.id = "SickTunes";
       audio.id = "SickTunes";
      audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav";
       audio.preload = "auto";
       audio.preload = "auto";
      audio.loop = "loop";
       document.body.appendChild(audio);
       document.body.appendChild(audio);
     }
     }


     if (audio.paused) {
     if (e.button === 0) {
      audio.src = "https://okayxairen.wiki/images/6/69/Ungh.mp3";
      audio.playbackRate = 0.8 + Math.random() * 0.4; // 80–120%
      audio.currentTime = 0;
       audio.play();
       audio.play();
     } else {
     }
      audio.pause();
 
    if (e.button === 2) {
      audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav";
      audio.playbackRate = 1;
      audio.currentTime = 0;
 
      if (audio.paused) {
        audio.play();
      } else {
        audio.pause();
      }
     }
     }
   });
   });
});
});

Revision as of 01:30, 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").css("cursor", "pointer");

  link.on("contextmenu", function (e) {
    e.preventDefault();
  });

  link.on("mousedown", function (e) {
    let audio = document.getElementById("SickTunes");

    if (!audio) {
      audio = document.createElement("audio");
      audio.id = "SickTunes";
      audio.preload = "auto";
      document.body.appendChild(audio);
    }

    if (e.button === 0) {
      audio.src = "https://okayxairen.wiki/images/6/69/Ungh.mp3";
      audio.playbackRate = 0.8 + Math.random() * 0.4; // 80–120%
      audio.currentTime = 0;
      audio.play();
    }

    if (e.button === 2) {
      audio.src = "https://okayxairen.wiki/images/e/e0/E1M1_Roland.wav";
      audio.playbackRate = 1;
      audio.currentTime = 0;

      if (audio.paused) {
        audio.play();
      } else {
        audio.pause();
      }
    }
  });
});