»
AnglaisFrançaisVietnamien

Imprimer - Pulsé du texte avec les couleurs - JavaScriptBank.com

Version complète: jsB@nk » Texte » Fade-Glow » Pulsé du texte avec les couleurs
URL: https://www.javascriptbank.com/pulsating-text-with-colours-1color.html

Pulsé du texte avec les couleurs © JavaScriptBank.comCet effet rend l'utilisation de IE multimédia filtres, couplée avec les scripts, de rendre une «aura» autour d'un texte donné. L'effet peut être facilement appliqué à plusieurs textes, chacun avec différentes couleurs et la vitesse palpitante.

Version complète: jsB@nk » Texte » Fade-Glow » Pulsé du texte avec les couleurs
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-->