Typewriter





Put this between your HEAD-tags:
<script language="JavaScript">
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
"Visit WINFOLINX.COM! ",
"You will find everything you need.",
"Tips, trix, tutorials, links and more!",
"All you need for your web pages!"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.form1.textfeld.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",1000);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",50);
}
// end -->
</script>

Put this into your BODY-tag:
<body onLoad="textticker()">

Put this between your BODY-tags:
<form name="form1">
<input type=textarea name="textfeld" size="30"> </form>

Free JavaScripts provided
by Winfolinx.com


Back