Global.js
Jump to navigation
(function((cash)) { $(document).ready(function() { var el=$(".AlizeeaSig") textSigIndex = 0; textSig = new Array; textSig[0] = "Administrator Forum"; textSig[1] = "Speed Config"; textSig[2] = "Wiki Administrator"; el.each( function(index,elm) { $(elm).css({height: "240px", width:"600px", background: "url('http://help.triburile.ro/images/a/a0/Alizeea2.png')"}); $(elm).html("<label id='sigText' style='position: relative; top: 150px; left: 200px; font-size: 300%'>"+textSig[textSigIndex]+"</label>"); }); sigTimer= window.setInterval(function() {
textSigIndex++; if (textSigIndex >= textSig.length) { textSigIndex = 0; } var elt = $(".AlizeeaSig #sigText"); elt.each( function(index,elt) { $(elt).fadeOut("fast", function() { var elt = $(".AlizeeaSig #sigText"); elt.html(textSig[textSigIndex]); elt.fadeIn("fast"); }); });
}, 5000); })}(jQuery))