Global.js: Difference between revisions

From Wiki Grepolis EN
Jump to navigation
No edit summary
No edit summary
Line 17: Line 17:


$(document).ready(function() {
$(document).ready(function() {
   $(".Announcements_Main page").hide();
   $(".Aankondiging_Hoofdpagina").hide();
   anunt_list = $(".Announcements_Main page").toArray();
   anunt_list = $(".Aankondiging_Hoofdpagina").toArray();
   nr_anunturi=anunt_list.length;
   nr_anunturi=anunt_list.length;
   anunt_curent=0;
   anunt_curent=0;
Line 27: Line 27:
   } else {
   } else {
       if (nr_anunturi > 0) {
       if (nr_anunturi > 0) {
             $(".anunt_primapagina").fadeIn();
             $(".Announcements_Main page").fadeIn();
         }
         }
   }
   }
   if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Overleg:FAQ") {
   if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Overleg:FAQ") && (wgTitle = azertyuiop) {
$("#content").before("<div style='clear:both'></div><div id='grepo_nl_hints_container' style='padding: 10px 15px; background: url(&quot;/skins/grepolis/content_bg.jpg&quot;) repeat scroll 0% 0% transparent; width: 772px; min-height:1px; text-align: center;'><a title='Close' href='#' id='grepo_nl_close_hints'><img style='float:right; height:20px; width:20px;' src='http://wiki.nl.grepolis.com/images/e/e5/Pxl.png'/></a><span id='grepo_nl_hints' style='width:80%'></span></div>");
$("#content").before("<div style='clear:both'></div><div id='grepo_nl_hints_container' style='padding: 10px 15px; background: url(&quot;/skins/grepolis/content_bg.jpg&quot;) repeat scroll 0% 0% transparent; width: 0px; min-height:0px; max-height:1px; text-align: center;'><a title='Close' href='#' id='grepo_nl_close_hints'><img style='float:right; height:20px; width:20px;' src='http://wiki.nl.grepolis.com/images/a/ab/Sluiten.png'/></a><img id='grepo_nl_hints_image' style='position:relative; float:right; height:75px; width:75; top:35px; left:0px;' src='http://wiki.nl.grepolis.com/images/3/36/GPlogo.png' alt='Instructions' /> <span id='grepo_nl_hints' style='width:80%'></span></div>");
   ch_hints();
   ch_hints();
   hint_timer=window.setInterval("ch_hints()",30000);
   hint_timer=window.setInterval("ch_hints()",30000);
Line 39: Line 39:
             $("#grepo_nl_close_hints").hide();
             $("#grepo_nl_close_hints").hide();
             $("#grepo_nl_hints_image").hide();
             $("#grepo_nl_hints_image").hide();
             $("#grepo_nl_hints_container").css("min-height","1px");
             $("#grepo_nl_hints_container").css("min-height","0px");
         });
         });
   });
   });

Revision as of 15:29, 28 December 2011

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_Hoofdpagina").hide();
  anunt_list = $(".Aankondiging_Hoofdpagina").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) {
           $(".Announcements_Main page").fadeIn();
       }
  }
  if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Overleg:FAQ") && (wgTitle = azertyuiop) {

$("#content").before("

<a title='Close' href='#' id='grepo_nl_close_hints'><img style='float:right; height:20px; width:20px;' src='http://wiki.nl.grepolis.com/images/a/ab/Sluiten.png'/></a><img id='grepo_nl_hints_image' style='position:relative; float:right; height:75px; width:75; top:35px; left:0px;' src='http://wiki.nl.grepolis.com/images/3/36/GPlogo.png' alt='Instructions' />

");

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

});