Mudanças entre as edições de "MediaWiki:Common.js"
Ir para navegação
Ir para pesquisar
(33 revisões intermediárias por 5 usuários não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
− | /* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */ |
||
− | |||
(function(){ |
(function(){ |
||
function on_load(){ |
function on_load(){ |
||
+ | // Epoch 0: momento da fundação do Garoa Hacker Clube! |
||
⚫ | |||
+ | // Veja http://garoa.net.br/wiki/Epoch0 |
||
⚫ | |||
− | var |
+ | var garoa_msecs = document.createElement("li"); |
− | + | garoa_msecs.setAttribute("id", "footer-garoa-msecs"); |
|
+ | document.getElementById("footer-places").appendChild(garoa_msecs); |
||
− | garoa_div.setAttribute("style", "position:absolute;margin:0;border:0;left:3px;top:3px:font-size:8"); |
||
− | document.getElementsByTagName("body")[0].appendChild(garoa_div); |
||
function update_msecs(){ |
function update_msecs(){ |
||
− | document.getElementById(" |
+ | document.getElementById("footer-garoa-msecs").innerHTML = "<a title=\"Fundação\" href=\"/wiki/Fundação\">Garoando há "+ |
− | (new Date().getTime()-epoch |
+ | (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_secs, 1000); |
||
+ | |||
} |
} |
||
Linha 23: | 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); });