Use Haitham's Typing Text script to display messages in an animated fashion. Unlike similar scripts, both the typing speed and pause between messages can be easily configured.
Add the below code to the <body> section of your page:
<form
name="news">
<textareaname="news2"cols=40rows=4wrap=virtual></textarea>
</form> <scriptlanguage="javascript"type="text/javascript"> /* Visit http://www.yaldex.com/
for full source code
and get more free JavaScript, CSS and DHTML scripts! */
//Typing Text (DHTML) v1 (Sunday, April 15th, 2001)
//Programmed by: Haitham M. Al-Beik
//Email: albeik99@netzero.net document.news.news2.style.background='#FFFFCE'; document.news.news2.style.color='red'; var
newsText =newArray(); newsText[0]="Typing Text JScript
v1\nDeveloped on Sunday, April 15th, 2001..."; newsText[1]="This is a text-typing DHTML
demo. \nScript featured on http://wsabstract.com"; newsText[2]="Make sure you read the comments
before you configure the script..."; newsText[3]="Programmed by: Haitham
Al-Beik...\n\nCopyright (c) Haitham M. Al-Beik, 2001"; newsText[4]=
"http://www.prosheet.com/DHTML/typetext.htm"
var
ttloop =1;// Repeat forever? (1 = True; 0
= False) var
tspeed =50;// Typing speed in milliseconds
(larger number = slower) var
tdelay =1000;// Time delay between newsTexts
in milliseconds
// ------------- NO EDITING AFTER THIS LINE ------------- \\ var
dwAText,
cnews=0,
eline=0,
cchar=0,
mxText;