<SCRIPT language=JavaScript> <!-- innen /* Letöltve a ThomasWebMűhely javascript archívumából: http://twm.faxunil.hu/muhely/ */ function createHexArray(n) { this.length = n; for (var i = 1; i <= n; i++) this[i] = i - 1;
this[11] = "A"; this[12] = "B"; this[13] = "C"; this[14] = "D"; this[15] = "E"; this[16] = "F"; return this; } hx = new createHexArray(16);
function convertToHex(x) { if (x < 17) x = 16; var high = x / 16; var s = high+""; s = s.substring(0, 2); high = parseInt(s, 10); var left = hx[high + 1]; var low = x - high * 16; if (low < 1) low = 1; s = low + ""; s = s.substring(0, 2); low = parseInt(s, 10); var right = hx[low + 1]; var string = left + "" + right; return string; }
function makeRainbow(text) { text = text.substring(0, text.length); color_d1 = 255; mul = color_d1 / text.length; for(var i = 0; i < text.length; i++) { color_d1 = 255*Math.sin(i / (text.length / 3)); color_h1 = convertToHex(color_d1); color_d2 = mul * i; color_h2 = convertToHex(color_d2);
k = text.length; j = k - i; if (j < 0) j = 0; color_d3 = mul * j; color_h3 = convertToHex(color_d3);
document.write("<FONT COLOR=\"#" + color_h3 + color_h1 + color_h2 + "\">" + text.substring(i, i + 1) + "</FONT>"); } } // eddig --> </SCRIPT>
<SCRIPT> <!-- makeRainbow("Csak akkor tehetsz meg mindent, ha már semmid nincs!"); // --> </SCRIPT> <FONT color=#ff1111>C</FONT><FONT color=#fa1111>s</FONT><FONT color=#f51d11>a</FONT><FONT color=#f12b11>k</FONT><FONT color=#eb3a13> </FONT><FONT color=#e64818>a</FONT><FONT color=#e1561d>k</FONT><FONT color=#dc6422>k</FONT><FONT color=#d77127>o</FONT><FONT color=#d27e2c>r</FONT><FONT color=#cd8b31> </FONT><FONT color=#c99735>t</FONT><FONT color=#c4a23a>e</FONT><FONT color=#bfad3f>h</FONT><FONT color=#bab844>e</FONT><FONT color=#b5c249>t</FONT><FONT color=#b1cb4e>s</FONT><FONT color=#abd353>z</FONT><FONT color=#a6db58> </FONT><FONT color=#a1e25d>m</FONT><FONT color=#9ce962>e</FONT><FONT color=#98ee66>g</FONT><FONT color=#93f36b> </FONT><FONT color=#8ef771>m</FONT><FONT color=#89fa75>i</FONT><FONT color=#84fc7a>n</FONT><FONT color=#7ffe7f>d</FONT><FONT color=#7afe84>e</FONT><FONT color=#75fe89>n</FONT><FONT color=#71fd8e>t</FONT><FONT color=#6bfb93>,</FONT><FONT color=#66f898> </FONT><FONT color=#62f59c>h</FONT><FONT color=#5df1a1>a</FONT><FONT color=#58eba6> </FONT><FONT color=#53e5ab>m</FONT><FONT color=#4edfb1>á</FONT><FONT color=#49d7b5>r</FONT><FONT color=#44cfba> </FONT><FONT color=#3fc6bf>s</FONT><FONT color=#3abcc4>e</FONT><FONT color=#35b2c9>m</FONT><FONT color=#31a7cd>m</FONT><FONT color=#2c9cd2>i</FONT><FONT color=#2791d7>d</FONT><FONT color=#2284dc> </FONT><FONT color=#1d77e1>n</FONT><FONT color=#186ae6>i</FONT><FONT color=#135ceb>n</FONT><FONT color=#114ef1>c</FONT><FONT color=#1141f5>s</FONT><FONT color=#1132fa>!</FONT> |