»
Tiếng AnhTiếng PhápTiếng Việt

In - Chữ rực lửa - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Chữ » Mờ và chớp sáng » Chữ rực lửa
URL: https://www.javascriptbank.com/pulsating-text-ii.html

Chữ rực lửa © JavaScriptBank.comHiệu ứng sử dụng các bộ lọc của IE để cho chữ chớp sáng với màu đỏ trông như đang bị đốt cháy trên trang web.

Phiên bản đầy đủ: jsB@nk » Chữ » Mờ và chớp sáng » Chữ rực lửa
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-->