Ich hab jetzt zum beispiel den,
<Center>
<SCRIPT LANGUAGE="JavaScript">
<!-- ... Quelle Beispiel ...
// Farbspiel
function HexArray(n)
{
this.length = n
for(i = 0; i < 10; i++)
this[i] = i
this[10] = "A"
this[11] = "B"
this[12] = "C"
this[13] = "D"
this[14] = "E"
this[15] = "F"
return(this)
}
hex = new HexArray()
function DezNachHex(x)
{
var high = Math.floor(x / 16)
var low = Math.floor(x - high * 16)
return(hex[high] + "" + hex[low])
}
function Farbspiel(text)
{
for(i = 0; i < text.length; i++)
{
FarbwertRot = 255 - (255 * i) / (text.length - 1)
FarbwertGruen = 10
FarbwertBlau = 10
document.write("<FONT COLOR='#" + DezNachHex(FarbwertRot) + DezNachHex(FarbwertGruen) + DezNachHex(FarbwertBlau) + "'>" +
text.substring(i, i + 1) +
"</FONT>")
}
}
// -->
</SCRIPT>
<STRONG>
<SCRIPT LANGUAGE="JavaScript">
<!--
Farbspiel("Surfen im Netz, aber bitte mit Pfiff!")
file://-->
</SCRIPT>
</STRONG>
</center>
rein gemacht aber es kommt nichts ich habe es zu dem Quell code gefügt