Very fast text
Speed up your text. How? Make it speed across the screen in italics! To do this, insert the following script where you want the text to appear:
<span id="webaddress" style="position:relative; visibility:hidden; font-style:italic;"> Have you ever seen text move so fast? </span>
<script language="JavaScript1.2">
<!--
if (document.all){
webaddress.style.left=document.body.clientWidth
webaddress.style.visibility="visible"
}
function moveit(){
if (webaddress.style.pixelLeft>15)
webaddress.style.pixelLeft-=15
else{
webaddress.style.fontStyle="normal"
webaddress.style.left=0
clearInterval(moving)
}
}
if (document.all)
moving=setInterval("moveit()",40)
//-->
</script>
Discover all Webmaster scripts.