Начало
Сообщения
Текст жара
(Internet Explorer 5.5) Автоматически цвет изменений, высота, и ширина сообщения при указанном уровне. Отметьте: текст кажется нормальным во всех других браузерах
JavaScript - лучшее место, чтобы найти JavaScripts!
JavaScript Messages: Текст жара
<!-- THREE STEPS TO INSTALL GLOW TEXT: 1. Copy the coding into the HEAD of your HTML document 2. Add the onLoad event handler into the BODY tag 3. Put the last coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <style> .F1 {filter: glow(Color=#FF8000,Strength=10); width=200px; height=200px;} .F2 {filter: glow(Color=#00FF00,Strength=9); width=150px; height=200px;} .F3 {filter: glow(Color=#0080FF,Strength=12); width=250px; height=200px;} </style> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var rate = 1000 // do not edit below this line var i = 0; var F = 'F1'; function doThing() { if (document.getElementById&&document.all) { ok = true; i++; if (i==1) F = 'F1'; if (i==2) F = 'F2'; if (i==3) F = 'F3'; YammaYamma.className = F; if (i > 2) i = 0; timer = setTimeout('doThing()', rate); } } // End --> </script> </HEAD> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY onLoad="doThing()"> <!-- STEP THREE: Copy this code into the BODY of your HTML document --> <center> <table width="250" cellspacing="0" cellpadding="10"> <tr> <td> <center> <font face="Courier" size="5" color="#FFFFFF"> <p id="YammaYamma"> <b>JavaScript - The best place to find JavaScripts!</b> </p> </font> </center> </td> </tr> </table> </center> <!-- Script Size: 1.88 KB -->