|
Эффект печатной машинки
<script LANGUAGE="JavaScript">
var anyString="" +
"\r\учебник java script. скачать учебник по Java script" +
"\r\Effect pethatnoy mashinki "+
"\r\Demonstration script";
index="0";
function type()
{
document.forms[0].txt.value=document.forms[0].txt.value +
anyString.charAt(index);
index=eval(index)+1;
cancelTO=setTimeout("type()",5);
if (index == anyString.length) clearTimeout(cancelTO);
}
//-->
</script>
|
|