Nome del Forum che si Muove

« Older   Newer »
 
  Share  
.
  1. Nifo
        Like  
     
    .

    User deleted


    Questo script da aggiungere in HTML in CIMA a tutte le pagine permette di visualizzare il titolo del Forum.

    CODICE
    <script type="text/javascript">
    var message = new Array();
    message = "Inserisci qui il nome del forum tuo forum"
    var reps = 2;
    var speed = 150;
    var p = message.length;
    var T = "";
    var C = 0;
    var mC = 0;
    var s = 0;
    var sT = null;
    if (reps < 1) reps = 1;
    function doIt() {
    T = message;
    A();
    }
    function A() {
    s++;
    if (s > 7) { s = 1;}
    if (s == 1) { document.title = '.¸.·´¯·.¸.·´¯·.¸.·´¯· '+T+'.¸.·´¯·.¸.·´¯·.¸.·´¯· '; }
    if (s == 2) { document.title = '·.¸.·´¯·.¸.·´¯·.¸.·´¯ '+T+'·.¸.·´¯·.¸.·´¯·.¸.·´¯ '; }
    if (s == 3) { document.title = '¯·.¸.·´¯·.¸.·´¯·.¸.·´ '+T+'¯·.¸.·´¯·.¸.·´¯·.¸.·´ '; }
    if (s == 4) { document.title = '´¯·.¸.·´¯·.¸.·´¯·.¸.· '+T+'´¯·.¸.·´¯·.¸.·´¯·.¸.· '; }
    if (s == 5) { document.title = '·´¯·.¸.·´¯·.¸.·´¯·.¸. '+T+'·´¯·.¸.·´¯·.¸.·´¯·.¸. '; }
    if (s == 6) { document.title = '.·´¯·.¸.·´¯·.¸.·´¯·.¸ '+T+'.·´¯·.¸.·´¯·.¸.·´¯·.¸ '; }
    if (s == 7) { document.title = '¸.·´¯·.¸.·´¯·.¸.·´¯·. '+T+'¸.·´¯·.¸.·´¯·.¸.·´¯·. '; }if (C < (7 * reps)) {
    sT = setTimeout("A()", speed);
    C++;
    }
    else {
    C = 0;
    s = 0;
    mC++;
    if(mC > p - 1) mC = 0;
    sT = null;
    doIt();
    }
    }
    doIt();
    </script>
     
    .
0 replies since 24/7/2010, 14:02   42 views
  Share  
.