»
EnglishFrenchVietnamese

Print - Pulsating text with Colours - JavaScriptBank.com

Full version: jsB@nk » Text » Fade-Glow » Pulsating text with Colours
URL: https://www.javascriptbank.com/pulsating-text-with-colours-1color.html

Pulsating text with Colours © JavaScriptBank.comThis effect makes use of IE's multimedia filters, coupled with scripting, to render an "aura" around any given text. The effect can easily be applied to multiple text, each with differing pulsating colors and speed.

Full version: jsB@nk » Text » Fade-Glow » Pulsating text with Colours
URL: https://www.javascriptbank.com/pulsating-text-with-colours-1color.html



JavaScript
<SCRIPT>              //      ^-this is the text that is shown<!--//can be modified from herevar from = 5;                    //the animation start valuevar to = 11; //the animation end valuevar delay = 55; //the animation speedvar glowColor = "lime";          //the color of the text//no more editingvar i = to;var j = 0;textPulseDown();function textPulseUp(){if (!document.all)returnif (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)returnif (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><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<SPAN id=theText><FONT size=+5>JavaScriptBank.com</FONT></SPAN><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->