Global.js: Diferență între versiuni
Jump to navigation
mFără descriere a modificării |
mFără descriere a modificării |
||
Linia 6: | Linia 6: | ||
function ch_hints() { | function ch_hints() { | ||
var hint_nr=Math.round(Math.random()*54); | var hint_nr=Math.round(Math.random()*54); | ||
$("grepo_ro_hints").slideUp("slow); | $("#grepo_ro_hints").slideUp("slow); | ||
hint_nr++; | hint_nr++; | ||
$.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section:hint_nr}, function(response,succes) { | $.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section:hint_nr}, function(response,succes) { | ||
Linia 17: | Linia 17: | ||
}; | }; | ||
},"html"); | },"html"); | ||
$("grepo_ro_hints").slideDown("slow"); | $("#grepo_ro_hints").slideDown("slow"); | ||
} | } | ||
Linia 47: | Linia 47: | ||
} | } | ||
if (wgAction != "edit) { | if (wgAction != "edit) { | ||
$("#content").before("<div style='clear:both'></div><div | $("#content").before("<div style='clear:both'></div><div style='padding: 10px 15px; background: url("/skins/grepolis/content_bg.jpg") repeat scroll 0% 0% transparent; width: 772px; text-align: center;'><span id='grepo_ro_hints'></span></div>"); | ||
ch_hints(); | ch_hints(); | ||
hint_timer=window.setInterval("ch_hints()",30000); | hint_timer=window.setInterval("ch_hints()",30000); | ||
} | } | ||
}); | }); |
Versiunea de la data 17 februarie 2011 20:59
var anunt_list var nr_anunturi var anunt_curent var anunt_timer, hint_timer;
function ch_hints() {
var hint_nr=Math.round(Math.random()*54); $("#grepo_ro_hints").slideUp("slow); hint_nr++; $.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section:hint_nr}, function(response,succes) { if (succes) { $.get("/api.php",{action:"parse",text:response,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) {
$("#content").before("
");
ch_hints(); hint_timer=window.setInterval("ch_hints()",30000);
} });