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

In - Chữ gõ trên thanh trạng thái - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Chữ gõ trên thanh trạng thái
URL: https://www.javascriptbank.com/status-message-typewritter.html

Chữ gõ trên thanh trạng thái © JavaScriptBank.comHiệu ứng này sử dụng dữ liệu mảng và phương phức charAt() để hiển thị chữ như đang được gõ trên thanh trạng thái.

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Chữ gõ trên thanh trạng thái
URL: https://www.javascriptbank.com/status-message-typewritter.html



CSS
    <style type=text/css><!--Status Message Typewritter 1.0Author: Thái Cao PhongWebsite: www.JavaScriptBank.comPlease keep these comments above to contact author when you use this script. Thank you very much.Vietnamese: Xin ban hay giu lai nhung thong tin tren de nguoi khac co the lien he voi tac gia neu ban co su dung doan ma nay. Cam on ban rat nhieu.*/A{text-decoration: none;}A:hover{color: black;text-decoration: underline overline}P{PADDING: 0px;MARGIN: 0px;}--></style><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


JavaScript
    <script type="text/javascript">/*    xxxxxxxxxxxxxxx   xxxxxxxxxxx     xxxx    xxxxxxxxxxxxxxx  xxxxxxxxxxxxx    xxxx    xxxxxxxxxxxxxxx  xxxxxxxxxxxxx    xxxx         xxxxx       xxxxxxxxxxxx     xxxx         xxxxx       xxxxx  xxxx         xxxxx xxxxxxxxxxxx  xxxx         xxxxx xxxxxxxxxxxxx  xxxxxxxxxxxwww.JavaScriptBank.com         xxxxx  xxxxxxxxxxxx  xxxxxxxxxxxxx         xxxxx        xxxxx  xxxx     xxxx   xxx   xxxxx  xxxxxxxxxxxx    xxxx     xxxx   xxx  xxxxxx xxxxxxxxxxxxx  xxxx     xxxx   xxxxxxxxxx xxxxxxxxxxxxx  xxxxxxxxxxxxx    xxxxxxxx  xxxxxxxxxxx      xxxxxxxxxxx      Status Message Typewritter 1.0Author: Thái Cao PhongWebsite: www.JavaScriptBank.comPlease keep these comments above to contact author when you use this script. Thank you very much.Vietnamese: Xin ban hay giu lai nhung thong tin tren de nguoi khac co the lien he voi tac gia neu ban co su dung doan ma nay. Cam on ban rat nhieu.*/var textArray=new Array();textArray[0]="This is a status message typewritter script";textArray[1]="It's written by Thái Cao Phong";textArray[2]="www.JavaScriptBank.com";var arrayIndex=end=0;var temp="";function CaoPhong(){temp+=textArray[arrayIndex].charAt(end);status=temp;if(end==textArray[arrayIndex].length) {end=0;arrayIndex++;temp="";if(arrayIndex==textArray.length) arrayIndex=0;setTimeout("CaoPhong()",3000);}else{end++;setTimeout("CaoPhong()",100);}}CaoPhong();</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->