»
AnglaisFrançaisVietnamien

Imprimer - Pulsé texte II - JavaScriptBank.com

Version complète: jsB@nk » Texte » Fade-Glow » Pulsé texte II
URL: https://www.javascriptbank.com/pulsating-text-ii.html

Pulsé texte II © JavaScriptBank.comCet effet rend l'utilisation de IE multimédia filtres, couplée avec les scripts, de rendre un «halo» 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é texte II
URL: https://www.javascriptbank.com/pulsating-text-ii.html



JavaScript
<script><!--//range of glowingvar from = 3;var to = 9;//speed of pulsingvar delay = 40;//color of glow, name or RGB value (example:'#00FF00')var glowColor = "Red";//NO MORE EDITING!!!var i = to;var j = 0;//can be called here or whenever you want the text to start pulsingtextPulseDown();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-->