User:Kiokurashi/common.js: Difference between revisions

From IdleOn MMO Wiki
imported>Kiokurashi
(Created page with "function coindisplay(coins) { var n = coins; var ret = ''; const imgs = ["4/43/Copper", "4/4e/Silver", "1/1f/Gold", "2/2c/Platinum", "5/53/Dementia", "d/d5/Vo...")
 
mNo edit summary
 
(74 intermediate revisions by 2 users not shown)
Line 1: Line 1:
function coindisplay(coins) {
// $(document).ready(function(){
    var n = coins;
// var element = document.createElement("p"); // "p" is the type of element that will be created
    var ret = '';
// element.style = "color:blue"; // to modify attributes to the element that will be created, just type element.(attribute you want to modify) = "whatever value"
    const imgs = ["4/43/Copper", "4/4e/Silver", "1/1f/Gold", "2/2c/Platinum", "5/53/Dementia",
// element.contentText = "Text Here"; // this sets the innerHTML of the element that will be created to "Paragraph text"
    "d/d5/Void_Coin.png/22px-Void", "1/11/Lustre_Coin.png/22px-Lustre",  
// document.getElementById('firstHeading').appendChild(element); // this adds the element to the page content
    "8/83/Starfire_Coin.png/22px-Starfire", "8/8b/Dreadlo_Coin.png/22px-Dreadlo",
// });
    "e/e6/Godshard_Coin.png/22px-Godshard"];
$(document).ready(function(){
    var i = 18;
var personalExtra = document.getElementById('personal-extra');
var pExtraUList = personalExtra.querySelector('ul');
var darkmodeElement = document.createElement('li');
var darkmodeLink = document.createElement('a');
var darkmodeIcon = document.createElement('img');
darkmodeLink.setAttribute('href', '#');
darkmodeLink.setAttribute('id', 'pt-darkmode-icon');
darkmodeLink.setAttribute('class', 'ext-darkmode-link');
darkmodeIcon.setAttribute('src','https://idleon.wiki/wiki/images/8/8d/Minuteglass.png');
darkmodeLink.appendChild(darkmodeIcon);
darkmodeElement.appendChild(darkmodeLink);
pExtraUList.appendChild(darkmodeElement);
});
/*
var a = document.createElement("a");
var ulist = document.getElementById("list1");
var newItem = document.createElement("li");


    do {
a.textContent = "...ooo";
        let len = n.length;
a.setAttribute('href', "http://www.msn.com");
        if (len > i) {
newItem.appendChild(a);
            let num = parseInt(n.substring(0, len - i));
ulist.appendChild(newItem);
            if (num > 0) {
                ret += "<img src=https://static.miraheze.org/idleonwiki/" + imgs[(i/2)] +
                "_Coin.png>" + num + " ";
            }
            n = n.substring(len - i);
        }
        i -= 2;
    }
    while(i > 0);


    return ret;
var el = document.createElement('img')
}
el.setAttribute('src','images/s2.jpg')
*/

Latest revision as of 19:25, 11 June 2023

// $(document).ready(function(){
// 	var element = document.createElement("p"); // "p" is the type of element that will be created
// 	element.style = "color:blue"; // to modify attributes to the element that will be created, just type element.(attribute you want to modify) = "whatever value"
// 	element.contentText = "Text Here"; // this sets the innerHTML of the element that will be created to "Paragraph text"
// 	document.getElementById('firstHeading').appendChild(element); // this adds the element to the page content
// });
$(document).ready(function(){
	var personalExtra = document.getElementById('personal-extra');
	var pExtraUList = personalExtra.querySelector('ul');
	var darkmodeElement = document.createElement('li');
	var darkmodeLink = document.createElement('a');
	var darkmodeIcon = document.createElement('img');
	darkmodeLink.setAttribute('href', '#');
	darkmodeLink.setAttribute('id', 'pt-darkmode-icon');
	darkmodeLink.setAttribute('class', 'ext-darkmode-link');
	darkmodeIcon.setAttribute('src','https://idleon.wiki/wiki/images/8/8d/Minuteglass.png');
	
	darkmodeLink.appendChild(darkmodeIcon);
	darkmodeElement.appendChild(darkmodeLink);
	pExtraUList.appendChild(darkmodeElement);
});
/*
var a = document.createElement("a");
var ulist = document.getElementById("list1");
var newItem = document.createElement("li");

a.textContent = "...ooo";
a.setAttribute('href', "http://www.msn.com");
newItem.appendChild(a);
ulist.appendChild(newItem);

var el = document.createElement('img')
el.setAttribute('src','images/s2.jpg')
*/