Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 44: | Line 44: | ||
console.log(i); | console.log(i); | ||
if (i >= 2) { | if (i >= 2) { | ||
− | document.getElementById("mw-navigation").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/6/63/Stared2.gif' alt='' style='position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;' onclick='stareClick()'>"; | + | document.getElementById("mw-navigation").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/6/63/Stared2.gif' alt='' style='position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;' onclick='stareClick()' id='stareGuy'>"; |
+ | var timer = setTimeout(function() { | ||
+ | const element = document.getElementById("stareGuy"); | ||
+ | element.remove(); | ||
+ | }, 8000); | ||
+ | </script> | ||
} | } |
Revision as of 12:28, 24 September 2024
function setCookie(cname,cvalue,exdays) { const d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } function stareClick() { var cvalue = getCookie("stares"); cvalue++; document.cookie = "stares" + "=" + cvalue + ";" + 365 + ";path=/"; console.log(cvalue); } var stare = getCookie("stares"); if (stare != "") { console.log("Cookie loaded!"); console.log("You have " + stare + " stares..."); } else { console.log("Setting up cookie..."); setCookie("stares", 0, 365); } var i = Math.floor(Math.random() * 11); console.log(i); if (i >= 2) { document.getElementById("mw-navigation").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/6/63/Stared2.gif' alt='' style='position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;' onclick='stareClick()' id='stareGuy'>"; var timer = setTimeout(function() { const element = document.getElementById("stareGuy"); element.remove(); }, 8000); </script> }