By.KaBuS weB MaSteR
Mesaj Sayısı : 223 Kayıt tarihi : 13/06/09 Yaş : 31 Nerden : Notalar İcinden Lakap : By.KaBuS
| Konu: Rengarenk yanıp sönen yazı Ptsi Haz. 15, 2009 9:26 pm | |
| - Kod:
-
<<!--Ab hier kopieren-->
<style> .1 {filter: glow(Color=#FF8000,Strength=10); <!--in den folgenden Zeilen Farben,Größe und Effekt veränderbar--> width=150px; height=150px;} .2 {filter: glow(Color=#00FF00,Strength=11); width=150px; height=150px;} .3 {filter: glow(Color=#0080FF,Strength=12); width=150px; height=150px;} </style> <script> var rate = 400 <!--Blinkgeschwindigkeit--> var i = 0 var F = 'F1' function los(){ if (document.getElementById&&document.all) { ok = true i++; if (i==1) F = '1' if (i==2) F = '2' if (i==3) F = '3' text.className=F if (i > 2) i = 0 timer=setTimeout('los()', rate) } } </script>
<body onload="los()">
<table width="200" cellspacing="0" cellpadding="10"> <tr> <td> <center> <font face="Courier" size="5" color="#FFFFFF"> <!--Schriftart und Farbe festlegen--> <p id="text"> <b>Traci's Javascript Archiv for you</b> <!--Text festlegen--> </p> </font> </center> </td> </tr> </table>
<!--Ende des scripts-->>
| |
|