»
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-bar-message-with-pointer.html

Chữ gõ trên thanh trạng thái © JavaScriptBank.comGiống như hiệu ứng tạo chữ xuất hiện kiểu từng kí tự trên thanh trạng thái, nhưng trong trường hợp này, đoạn mã có kí tự '|' giống như là con trỏ trong các trình soạn thảo văn bản.

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-bar-message-with-pointer.html



JavaScript
<script language="JavaScript"><!-- var Message="JavaScriptBank.com - Bank of over 2000+ free JavaScripts";var place=1;function rollIn() {//change Here//window.status or document.titledocument.title=Message.substring(0, place);if (place >= Message.length) {place=1;window.setTimeout("dragOut()",300); } else {place++;window.setTimeout("rollIn()",50);    } }function dragOut() {//Change Here//window.status or document.titledocument.title=Message.substring(place, Message.length);if (place >= Message.length) {place=1;window.setTimeout("rollIn()", 100);} else {place++;window.setTimeout("dragOut()", 50);   }}//--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="rollIn()"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->