Moving Text
טסקט'ת זיזהל
 

<html>
<head>
<title>א"ב בבנית אתרים</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8">
<style type="text/css">
<!--
.moveme
{
position: absolute;
top: 50px;
left: 50px;
font-family: arial;
font-size: 36px;
color: #0000cc;
visibility: visible;
}
// -->
</style>

<script language="JavaScript">
<!--
if (window.focus) self.focus();

var dhtml = (parseInt(navigator.appVersion) >= 4);

function moving(start, finish)
{
if (start < finish)
{
ex.left = (start += 5);
setTimeout('moving(' + start + ',' + finish +
')', 100);
}
}
// -->
</script>


<link rel="stylesheet" href="../liora3.css">
</head>

<body onLoad="if (dhtml) moving(50, 250)">

<div id="ex" class="moveme">Moving Text</div>

<script language="JavaScript">
<!--
if (dhtml)
{
var ex = (navigator.appName == "Netscape") ? document.ex :
document.all.ex.style;
}
// -->
</script>