Global.js: Diferență între versiuni

De la Wiki Grepolis RO
Jump to navigation
mFără descriere a modificării
mFără descriere a modificării
Linia 9: Linia 9:
   hint_nr++;
   hint_nr++;
   var hinter = "";
   var hinter = "";
   var hint_src=$.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section=hint_nr}, function(response,succes) {
   var hint_src = $.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section=hint_nr}, function(response,succes) {
       if (succes) {
       if (succes) {
       hinter=$.get("/api.php",{text:response,format:"xml"});
       hinter=$.get("/api.php",{text:response,format:"xml"});

Versiunea de la data 17 februarie 2011 19:35

var anunt_list var nr_anunturi var anunt_curent var anunt_timer;

function ch_hints() {

  $("#grepo_ro_hints").html("Hints example");
  var hint_nr=random(53);
  hint_nr++;
  var hinter = "";
  var hint_src = $.get("/index.php",{title:"Grepolis_FAQ",action:"raw",section=hint_nr}, function(response,succes) {
     if (succes) {
     hinter=$.get("/api.php",{text:response,format:"xml"});
     };

});

  $("#grepo_ro_hints").html($(hinter).find("preserve").html());
  

}


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()",10000);
  } else {
      if (nr_anunturi > 0) {
           $(".anunt_primapagina").fadeIn();
       }
  }

$("#content").before("

");

  ch_hints();

});