Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(68 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | var i; | + | function setCookie(cname,cvalue,exdays) { |
− | i = Math.floor(Math.random() * | + | 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 logCheck = document.getElementById("pt-logout"); | ||
+ | var cvalue = getCookie("stares"); | ||
+ | if (cvalue == 0) { | ||
+ | if (logCheck != 'undefined' && logCheck != null) { | ||
+ | document.getElementById("pt-logout").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; | ||
+ | } | ||
+ | else { | ||
+ | document.getElementById("pt-login").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; | ||
+ | } | ||
+ | } | ||
+ | cvalue++; | ||
+ | const d = new Date(); | ||
+ | d.setTime(d.getTime() + (365*24*60*60*1000)); | ||
+ | var expires = "expires=" + d.toUTCString(); | ||
+ | document.cookie = "stares" + "=" + cvalue + ";" + expires + ";path=/"; | ||
+ | console.log(cvalue); | ||
+ | const element = document.getElementById("stareCount"); | ||
+ | element.remove(); | ||
+ | if (logCheck != 'undefined' && logCheck != null) { | ||
+ | document.getElementById("pt-logout").innerHTML += "<p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + cvalue + "</p>"; | ||
+ | } | ||
+ | else { | ||
+ | document.getElementById("pt-login").innerHTML += "<p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + cvalue + "</p>"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | 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); | ||
+ | } | ||
+ | if (stare >= 1) { | ||
+ | var logCheck = document.getElementById("pt-logout"); | ||
+ | if (logCheck != 'undefined' && logCheck != null) { | ||
+ | document.getElementById("pt-logout").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; | ||
+ | } | ||
+ | else { | ||
+ | document.getElementById("pt-login").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | var i = Math.floor(Math.random() * 101); | ||
console.log(i); | console.log(i); | ||
− | if (i == | + | if (i >= 0 && i <= 6) { |
− | document.getElementById( | + | var timer2 = setTimeout(function() { |
+ | document.getElementById("mw-navigation").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/0/03/Stared3.gif' alt='' style='cursor: pointer;position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;' onclick='stareClick()' id='stareGuy'>"; | ||
+ | }, 2000); | ||
+ | var timer = setTimeout(function() { | ||
+ | const element = document.getElementById("stareGuy"); | ||
+ | element.remove(); | ||
+ | }, 4500); | ||
} | } |
Latest revision as of 10:40, 26 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 logCheck = document.getElementById("pt-logout"); var cvalue = getCookie("stares"); if (cvalue == 0) { if (logCheck != 'undefined' && logCheck != null) { document.getElementById("pt-logout").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; } else { document.getElementById("pt-login").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; } } cvalue++; const d = new Date(); d.setTime(d.getTime() + (365*24*60*60*1000)); var expires = "expires=" + d.toUTCString(); document.cookie = "stares" + "=" + cvalue + ";" + expires + ";path=/"; console.log(cvalue); const element = document.getElementById("stareCount"); element.remove(); if (logCheck != 'undefined' && logCheck != null) { document.getElementById("pt-logout").innerHTML += "<p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + cvalue + "</p>"; } else { document.getElementById("pt-login").innerHTML += "<p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + cvalue + "</p>"; } } 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); } if (stare >= 1) { var logCheck = document.getElementById("pt-logout"); if (logCheck != 'undefined' && logCheck != null) { document.getElementById("pt-logout").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; } else { document.getElementById("pt-login").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/8/85/Stare.png' alt='' style='width:15px;margin-left: 7px;'><p style='color: gold;display: inline; margin-left: 2px; font-weight: bold;' id='stareCount'>" + stare + "</p>"; } } var i = Math.floor(Math.random() * 101); console.log(i); if (i >= 0 && i <= 6) { var timer2 = setTimeout(function() { document.getElementById("mw-navigation").innerHTML += "<img src='https://johnisdead.withinhubris.com/images/0/03/Stared3.gif' alt='' style='cursor: pointer;position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;' onclick='stareClick()' id='stareGuy'>"; }, 2000); var timer = setTimeout(function() { const element = document.getElementById("stareGuy"); element.remove(); }, 4500); }