Global.js: Diferență între versiuni
mFără descriere a modificării |
mFără descriere a modificării |
||
Linia 99: | Linia 99: | ||
sigTimer= window.setInterval(function() { | sigTimer= window.setInterval(function() { | ||
var elt = $(".AlizeeaSig #sigText"); | var elt = $(".AlizeeaSig #sigText"); | ||
elt.hide("fast", function( | elt.hide("fast", function() { | ||
var tmptxt = textSig.shift(); | var tmptxt = textSig.shift(); | ||
textSig.push(tmptxt); | textSig.push(tmptxt); | ||
}); | }); | ||
elt.html(textSig[0]); | |||
elt.show("slow"); | elt.show("slow"); | ||
}, 5000); | }, 5000); | ||
}(jQuery)) | }(jQuery)) | ||
}); | }); |
Versiunea de la data 4 aprilie 2011 22:29
var anunt_list var nr_anunturi var anunt_curent var anunt_timer, hint_timer;
function ch_hints() {
var hint_nr=Math.round(Math.random()*45); $("#grepo_ro_hints").slideUp("slow"); hint_nr++; $.get("/index.php",{title:"Script:Grepolis_FAQ ",action:"raw",section:hint_nr}, function(response,succes) { if (succes) { resp= "" + response $.get("/api.php",{action:"parse",text:resp,format:"xml"},function(xresp,succ) { if (succ) { $("#grepo_ro_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue); } },"xml"); };
},"html");
$("#grepo_ro_hints").slideDown("slow");
}
function ch_anunt() {
$(anunt_list[anunt_curent]).fadeOut("normal",function() { anunt_curent++; if (anunt_curent >= nr_anunturi) { anunt_curent=0; } $(anunt_list[anunt_curent]).fadeIn(); });
}
$(document).ready(function() {
$(".anunt_primapagina").hide(); anunt_list = $(".anunt_primapagina").toArray(); nr_anunturi=anunt_list.length; anunt_curent=0; // console.info("a:"+anunt_list+"; nr:"+nr_anunturi); if (nr_anunturi > 1) { $(anunt_list[0]).fadeIn(); anunt_timer=window.setInterval("ch_anunt()",5000); } else { if (nr_anunturi > 0) { $(".anunt_primapagina").fadeIn(); } } if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Script:Grepolis FAQ") ) {
$("#content").before("
");
ch_hints(); hint_timer=window.setInterval("ch_hints()",30000); $("#grepo_ro_close_hints").click(function() { hint_timer=window.clearInterval(hint_timer); $("#grepo_ro_hints").slideUp("slow", function() { $("#grepo_ro_close_hints").hide(); $("#grepo_ro_hints_image").hide(); $("#grepo_ro_hints_container").css("min-height","0px"); }); }); } if ((wgTitle == "Global.js") && (wgAction != "edit") && (wgAction != "history") && (wgAction != "historysubmit")) {
$("#bodyContent").html("
Pentru evitarea eventualelor neplaceri am restrictionat accesul la aceasta pagina!
Documentare placuta in continuare!
Echipa <a href='http://ro.grepolis.com'>Grepolis.ro</a>!
");
}
// Grepolis 2.0 stuff
//$("body").css("background","url:('/images/c/cb/Bg1.jpg') no-repeat scroll center 0 #000000");
var plogo=$("#p-logo"); plogo.css({ width: "550px", left: "274px" });
plogo.html('<style type="text/css">a img { border:none; }</style><style type="text/css"> a { text-decoration:none; } </style>
');
//function SigMods(text);
(function($) { var el=$(".AlizeeaSig") textSig = new Array; textSig[0] = "Administrator Forum"; textSig[1] = "Speed Config"; textSig[2] = "Wiki Administrator"; el.each( function(index,elm) { $(elm).css({height: "240px", width:"600px", background: "url('http://help.triburile.ro/images/d/d5/Alizeea.png')"}); var tmptxt=textSig.shift(); textSig.push(tmptxt); $(elm).html("<label id='sigText' style='position: relative; top: 150px; left: 200px; font-size: 300%'>"+tmptxt+"</label>"); //$(elm).html("<label id='sigText'>"+tmptxt+"</label>"); }); sigTimer= window.setInterval(function() {
var elt = $(".AlizeeaSig #sigText"); elt.hide("fast", function() { var tmptxt = textSig.shift(); textSig.push(tmptxt); }); elt.html(textSig[0]); elt.show("slow");
}, 5000); }(jQuery)) });