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

In - Đổi chữ trên thanh trạng thái - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Đổi chữ trên thanh trạng thái
URL: https://www.javascriptbank.com/uppercase-lowercase-in-status-bar.html

Đổi chữ trên thanh trạng thái © JavaScriptBank.comHiệu ứng làm cho từng kí tự của dòng chữ được qui định trước trên thanh trạng thái đổi từ hoa sang thường hay thường sang hoa liên tục.

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Đổi chữ trên thanh trạng thái
URL: https://www.javascriptbank.com/uppercase-lowercase-in-status-bar.html



JavaScript
<SCRIPT>var text1="Welcome to JavaScriptBank.com"comeback=0cometo=0function dis(){window.status=text1.substring(0,cometo)if(comeback==1){cometo--;if(cometo==0){comeback=0}} else {cometo++;if(cometo==text1.length){comeback=1}}window.status=text1.substring(0,cometo)+"|"if(cometo==text1.length){window.setTimeout("dis()",500);} else {window.setTimeout("dis()",50);}}dis()</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->