Unlimited Concepts

Would you like to react to this message? Create an account in a few clicks or log in to continue.


    Rainbow Effect on ur Shoutout.......Many Colors...

    jemysworld
    jemysworld
    Member
    Member


    Posts : 26
    Join date : 2009-05-01

    Rainbow Effect on ur Shoutout.......Many Colors... Empty Rainbow Effect on ur Shoutout.......Many Colors...

    Post by jemysworld Wed May 06, 2009 1:30 am

    Code:
    /* AUTO FONT COLOR CHANGER */
    var vhinM;
    var newColor = new Array(5);
    var curColor = 0;
      newColor[0] = 'yellow';
      newColor[1] = 'cyan';
      newColor[2] = 'red';
      newColor[3] = 'pink';
      newColor[4] = 'violet';
      newColor[5] = 'green';
      newColor[6] = 'blue';
      newColor[7] = 'orange';
      newColor[8] = 'indigo';

    function rotateColor() {
      if (curColor == 8)
          curColor = 0;
      else
          ++curColor;
      document.getElementById('cpShoutoutBox').style.color= newColor[curColor];
    }

    function startRotate() {
      if (vhinM != null)
          clearInterval(vhinM);
      vhinM = setInterval("rotateColor()", 300);
    }
    window.onload = startRotate();
    Copy the code....Paste in ur extension....Many Codes to Come....

      Similar topics

      -

      Current date/time is Sun May 19, 2024 8:32 am