Welcome to The WebtoolBox, the primer place on the net to get FREE HTML scripts to enhance your web site! All scripts on this site are designed to make them easy to install, to bring true power and interactivity to your site. The majority of scripts here are collected all over the web.Just copy and paste them on your pages. Enjoy! Typing Text Script <html> <body> <script language="JavaScript1.2"> /* Typing Text Script- Last updated: 99/06/17 © Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com */ var it=0 function initialize(){ mytext=typing.innerText var myheight=typing.offsetHeight typing.innerText='' document.all.typing.style.height=myheight document.all.typing.style.visibility="visible" typeit() } function typeit(){ typing.insertAdjacentText("beforeEnd",mytext.charAt(it)) if (it<mytext.length-1){ it++ setTimeout("typeit()",100) } else return } if (document.all) document.body.onload=initialize </script> <small><span id="typing" style="visibility:hidden" align="left">Welcome to The WebtoolBox, the primer place on the net to get FREE HTML scripts to enhance your web site! All scripts on this site are designed to make them easy to install, to bring true power and interactivity to your site. The majority of scripts here are collected all over the web.Just copy and paste them on your pages. Enjoy!</span></small> </body> </html>
|