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 5: Linia 5:


function ch_anunt() {
function ch_anunt() {
         $(anunt_list[anunt_curent]).fadeOut();
         $(anunt_list[anunt_curent]).fadeOut("normal",function() {
        anunt_curent++;
            anunt_curent++;
        if (anunt_curent >= nr_anunturi) {
            if (anunt_curent >= nr_anunturi) {
          anunt_curent=0;
                anunt_curent=0;
        }
            }
        $(anunt_list[anunt_curent]).fadeIn();
            $(anunt_list[anunt_curent]).fadeIn();
         console.info("hit");
         );
}
}


Linia 22: Linia 22:
   if (nr_anunturi > 1) {
   if (nr_anunturi > 1) {
       $(anunt_list[0]).fadeIn();
       $(anunt_list[0]).fadeIn();
       anunt_timer=window.setInterval("ch_anunt()",2000);
       anunt_timer=window.setInterval("ch_anunt()",10000);
   } else {
   } else {
       if (nr_anunturi > 0) {
       if (nr_anunturi > 0) {

Versiunea de la data 16 februarie 2011 23:46

var anunt_list var nr_anunturi var anunt_curent var anunt_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() {

  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();
       }
  }

});