LANSING | Дата: Суббота, 22.03.2008, 12:57 | Сообщение # 1 |
c.Nilsoon
Группа: Администраторы
Сообщений: 747
Репутация: 19±
Статус: Offline
| <!-- BODY START HERE --> <span id="theText" style="width:100%; color: #0000bg"> <h1><strong>НАДПИСЬ</strong></h1> </span> <script> <!-- //величина сияния от и до var from = 1; var to = 7; //скорсть сияния var delay = 60; //цвет сияния, имя в rgb (пример:'#ffff33') или именованный var glowColor = "#FF0000'"; //не менять!!! var i = to; var j = 0; textPulseDown(); function textPulseUp() { if (!document.all) return if (i < to) { theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")"; i++; theTimeout = setTimeout('textPulseUp()',delay); return 0; } if (i = to) { theTimeout = setTimeout('textPulseDown()',delay); return 0; } } function textPulseDown() { if (!document.all) return if (i > from) { theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")"; i--; theTimeout = setTimeout('textPulseDown()',delay); return 0; } if (i = from) { theTimeout = setTimeout('textPulseUp()',delay); return 0; } } //--> </script> <!-- BODY END HERE -->
|
|
| |