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

In - Chữ neon nhiều màu - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Chữ » Mờ và chớp sáng » Chữ neon nhiều màu
URL: https://www.javascriptbank.com/pulsating-text-with-colours-1color.html

Chữ neon nhiều màu © JavaScriptBank.comHiệu ứng tạo một dòng chữ chớp sáng nhiều màu.

Phiên bản đầy đủ: jsB@nk » Chữ » Mờ và chớp sáng » Chữ neon nhiều màu
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-->