Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
Etiqueta: Desfazer |
|||
Linha 32: | Linha 32: | ||
})(); |
})(); |
||
+ | |||
+ | $(document).ready(function() { |
||
+ | |||
+ | setInterval(function() { |
||
+ | $('#auto-refresh-image').attr('src', 'https://garoa.net.br/api/status.jpg' + "?r=" + Math.random()); |
||
+ | }, 4000); |
||
+ | }); |
Edição atual tal como às 11h01min 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); })(); $(document).ready(function() { setInterval(function() { $('#auto-refresh-image').attr('src', 'https://garoa.net.br/api/status.jpg' + "?r=" + Math.random()); }, 4000); });