Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
Linha 32: | Linha 32: | ||
})(); |
})(); |
||
− | |||
− | $(document).ready(function() { |
||
− | |||
− | setInterval(function() { |
||
− | $('#auto-refresh-image').attr('src', 'http://sunstone.isoplano.com/jsteste/statusimg/status.png' + "?r=" + Math.random()); |
||
− | }, 4000); |
||
− | }); |
Edição das 10h40min de 2 de novembro de 2024
(function(){ function on_load(){ // Epoch 0: momento da fundação do Garoa Hacker Clube! // Veja http://garoa.net.br/wiki/Epoch0 var epoch = 1298244863; var garoa_msecs = document.createElement("li"); garoa_msecs.setAttribute("id", "footer-garoa-msecs"); document.getElementById("footer-places").appendChild(garoa_msecs); function update_msecs(){ document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">Garoando há "+ (new Date().getTime()/1000-epoch)+" segundos!</a>"; } function update_secs(){ document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">Garoando há "+ Math.floor(new Date().getTime()/1000-epoch)+" segundos!</a>"; } //juca gosta do efeito dos milissegundos correndo. Além de ser mil vezes mais nerd :-D literalmente! (aritmeticamente!!!) //mas pitanga acha ruim mostrar milissegundos por que consumiria muita CPU... // window.setInterval(update_msecs, 1); window.setInterval(update_secs, 1000); } window.addEventListener("load", on_load, false); })();