Rainbow Text

Don Von Alpha Dom
by Don Von Alpha Dom · 15 posts
12 years ago in IMVU Homepage Codes
Posted 12 years ago · Author
Replace "YOUR MESSAGE GOES HERE. THE LONG THE BETTER!" with the text you want to be rainbow.

Code
<script language="JavaScript"> 
<!-- Hide the script from old browsers --

function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i ]=i-1;
return this
}

hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D"; hex[15]="E"; hex[16]="F";

function ToHex(x){
var high=x/16;
var s=high+"";
s=s.substring(0,2);
high=parseInt(s,10);
var left=hex[high+1];
var low=x-high*16;
s=low+"";
s=s.substring(0,2);
low=parseInt(s,10);
var right=hex[low+1];
var string=left+""+right;
return string;
}

function rainbow(text){
text=text.substring(3,text.length-4);
color_d1=255;
mul=color_d1/text.length;
for(i=0;i < text.length;i++){
color_d1=255*Math.sin(i/(text.length/3)); "255*Math.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
document.write("<FONT COLOR='#FF"+color_h1+color_h2+"'>"+text.substring(i,i+1)+'</FONT>');
}
}

// --End Hiding Here -->
</script>

<SCRIPT>
<!--
{rainbow("--> YOUR MESSAGE GOES HERE. THE LONG THE BETTER!<!--");}
//-->
</SCRIPT>
Posted 12 years ago · Author
heathersboy17 wrote:
hmmmm interesting lol, well good work!!


~shrugs~ No problem.

All I did was copy the code from an old run down HP Codes group on IMVU. It looked like the group had not seen posts in years but burried under pages of threads was this neat little code.
Posted 12 years ago
lol well that is a very nice find!
whenever i find groups on IMVU they are always completely dead, and the only thing they have posted is stuff thats on GAF or imvucodes lol, just simple HP codes
Posted 12 years ago · Author
heathersboy17 wrote:
ljust simple HP codes


Mhm, I noticed that none of the HP code sites are taking advantage of CSS3 when there are lots of neat little tricks we can do that are cross browser compatible with CSS3. I am thinking of writing up some codes for adding shadows and engraved text ... stuff like that.
Posted 12 years ago
lol that would be tight, yeah im suprised nobody has done that either.
same thing with my popup thingy, ive never seen something like that on another site, it seems like all the sites just use HTML and nothing else to make their codes.
Posted 12 years ago
heathersboy17 wrote:
lol that would be tight, yeah im suprised nobody has done that either.
same thing with my popup thingy, ive never seen something like that on another site, it seems like all the sites just use HTML and nothing else to make their codes.


How can you say that. HTML works side by side with CSS. Without CSS, HTML would be almost dull and useless. Not to mention the use of javascript and PHP.
Posted 12 years ago · Author
[ACID] h4c|<7r wrote:
heathersboy17 wrote:
lol that would be tight, yeah im suprised nobody has done that either.
same thing with my popup thingy, ive never seen something like that on another site, it seems like all the sites just use HTML and nothing else to make their codes.


How can you say that. HTML works side by side with CSS. Without CSS, HTML would be almost dull and useless. Not to mention the use of javascript and PHP.


Most things that can be done with CSS can also be done with straight 90's style HTML. :lol:
You just have to be very masochistic to do it that way.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT