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

In - Chữ đánh máy trong khung - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Vùng nhập liệu » Chữ đánh máy trong khung
URL: https://www.javascriptbank.com/text-writter-scroller.html

Chữ đánh máy trong khung © JavaScriptBank.comMột đoạn mã JavaScript khác để tạo hiệu ứng chữ đánh máy trong khung.

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Vùng nhập liệu » Chữ đánh máy trong khung
URL: https://www.javascriptbank.com/text-writter-scroller.html



JavaScript
<script><!-- START HIDE//matrixhunter@yahoo.com// Set all needed variablesvar max=0;function textlist(){max=textlist.arguments.length;for (i=0; i<max; i++)this[i]=textlist.arguments[i];}tl = new textlist("This is a typewriter text box scroller.","The script is very easy to modify.","if you like it,","NOMINATE ME!!!!!!!!!","åßû§ïVê_þøêt");var x=0; pos=0;var l=tl[0].length;function textticker(){document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";if(pos++==l) { pos=0; setTimeout("textticker()",1000); x++;if(x==max) x=0; l=tl[x].length; } elsesetTimeout("textticker()",100);}// STOP HIDE --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="textticker()"><form name="tickform"><p align="center"><input type="text" name="tickfield" size="40"></p></form></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->