Ставим там где хотим увидеть: Code <SCRIPT language=JavaScript>
var strText = "";
function showtext(i) { var HTMLtag = 0;
for (count=1; i < strText.length && count > 0; i++) { if (strText.charAt(i) == "<" || strText.charAt(i) == ">") HTMLtag = !HTMLtag; if (!HTMLtag) count--; }
document.all["myBlock"].innerHTML = strText.substr(0, i);
if (i < strText.length) setTimeout("showtext(" + i + ")", 40); }
function doit() { strText = document.all["myBlock"].innerHTML; document.all["myBlock"].innerHTML = ""; document.all["myBlock"].style.visibility = "visible"; setTimeout("showtext(0)", 100); }
</SCRIPT>
</HEAD> <BODY bgColor=black link=red onload=doit() text=white vLink=red><FONT color=black id=myBlock style="VISIBILITY: hidden"><FONT face=Verdana size=1><FONT color=#ffd597>Здесь будет ваш текст. <P></FONT></FONT></P></BODY>
Получить прямую ссылку на файл Скрыть ссылки
|