Animation: move text (IE) : pixelTop « Javascript Properties « JavaScript DHTML






Animation: move text (IE)

 

<html>
<head>
<title>A Simple Page (IE)</title>
<script language="JavaScript">
function moveTxt()
{
    if (ani1.style.pixelTop < 500)
    {
        ani1.style.pixelTop += 2;
        ani1.style.pixelLeft += 2;
        setTimeout("moveTxt()", 50);
    }
}
</script>
</head>
<body onLoad="moveTxt()">
<div id="ani1" style="position:absolute;left:10;top:10">
Text ... on the go!
</div>
</body>
</html>

   
  








Related examples in the same category