Global.js: Diferență între versiuni
Jump to navigation
Fără descriere a modificării |
Fără descriere a modificării |
||
(Nu s-au afișat 3 versiuni intermediare efectuate de același utilizator) | |||
Linia 4: | Linia 4: | ||
textSigIndex = 0; | textSigIndex = 0; | ||
textSig = new Array; | textSig = new Array; | ||
textSig[0] = " | textSig[0] = "Am Fost"; | ||
textSig[ | textSig[1] = "Forum Admin"; | ||
textSig[ | textSig[2] = "Am Fost"; | ||
textSig[3] = "Speed Config"; | |||
textSig[4] = "Am Fost"; | |||
textSig[5] = "Wiki Administrator"; | |||
el.each( function(index,elm) { | el.each( function(index,elm) { | ||
$(elm).css({height: "240px", width:"600px", background: "url('http://help.triburile.ro/images/a/a0/Alizeea2.png')"}); | $(elm).css({height: "240px", width:"600px", background: "url('http://help.triburile.ro/images/a/a0/Alizeea2.png')"}); |
Versiunea curentă din 19 aprilie 2011 08:56
(function( $ ) { $(document).ready(function() { var el=$(".AlizeeaSig") textSigIndex = 0; textSig = new Array; textSig[0] = "Am Fost"; textSig[1] = "Forum Admin"; textSig[2] = "Am Fost"; textSig[3] = "Speed Config"; textSig[4] = "Am Fost"; textSig[5] = "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))