Diferencia entre revisiones de «Global.js»

De Wiki Grepolis ES
Ir a la navegación.
Sin resumen de edición
mSin resumen de edición
Línea 46: Línea 46:
    
    


});
$(document).ready(function() {
    $('#sub1').hover(
      function() { $('#welcome').show(); },
      function() { $('#welcome').hide(); }
    );
});
});

Revisión del 16:53 10 dic 2017

var anunt_list var nr_anunturi var anunt_curent var anunt_timer, hint_timer;


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() {

  $(".Aankondiging_Página_Principal").hide();
  anunt_list = $(".Aankondiging_Página_Principal").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 != "Overleg:FAQ") ) {

$("#content").before("

");

  ch_hints();
  hint_timer=window.setInterval("ch_hints()",30000);
  $("#grepo_nl_close_hints").click(function() {
       hint_timer=window.clearInterval(hint_timer);
       $("#grepo_nl_hints").slideUp("slow", function() {
            $("#grepo_nl_close_hints").hide();
            $("#grepo_nl_hints_image").hide();
            $("#grepo_nl_hints_container").css("min-height","0px");
       });
  });
       
  }
  

});


$(document).ready(function() {

   $('#sub1').hover(
     function() { $('#welcome').show(); },
     function() { $('#welcome').hide(); }
   );

});