Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<script type="text/javascript">
/*<![CDATA[*/
function Scrollable(id,ud){
var o=Scrollable[id],obj=document.getElementById(id),ud=typeof(ud)=='number'?ud:-1;
if (!o&&obj){
o=Scrollable[id]={
max:-obj.getElementsByTagName('*')[0].offsetWidth+obj.parentNode.offsetWidth,
n:obj.offsetLeft
}
}
if (o){
clearTimeout(o.to);
o.n=Math.min(Math.max(o.n+ud,o.max),0);
obj.style.left=o.n+'px';
ud!=0?o.to=setTimeout(function(){ Scrollable(id,ud); },50):null;
}
}
/*]]>*/
</script></head>
<body>
<table border="0" cellspacing="0" cellpadding="2">
<td valign="middle"><a href="#" onmouseover="Scrollable('tst1',-2);" onmouseout="Scrollable('tst1',0);" >
<img src="http://www.dynamicdrive.com/dynamicindex1/pointer2.gif" border=0></a>
</td>
<td valign="top">
<div style="position:relative;width:200px;height:25px;overflow:hidden;">
<div id="tst1" style="position:absolute;left:0px;top:0px">
<span><nobr><a href="http://www.dynamicdrive.com">Dynamic Drive</a> | <a href="http://www.javascriptkit.com">JavaScript Kit</a> | <a href="http://www.codingforums.com">CodingForums.com</a> | <a href="http://www.builder.com">Builder.com</a> | <a href="http://freewarejava.com">Freewarejava.com</a></nobr></span>
</div>
</div>
</td>
<td valign="middle"> <a href="#" onmouseover="Scrollable('tst1',2);" onmouseout="Scrollable('tst1',0);" >
<img src="http://www.dynamicdrive.com/dynamicindex1/pointer.gif" border=0></a>
</td>
</table>
<table border="0" cellspacing="0" cellpadding="2">
<td valign="middle"><a href="#" onmouseover="Scrollable('test2',-1);" onmouseout="Scrollable('test2',0);" >
<img src="http://www.dynamicdrive.com/dynamicindex1/pointer2.gif" border=0></a>
</td>
<td valign="top">
<div style="position:relative;width:300px;height:25px;overflow:hidden;">
<div id="test2" style="position:absolute;left:-200px;top:0px">
<span><nobr><a href="http://www.dynamicdrive.com">Dynamic Drive</a> | <a href="http://www.javascriptkit.com">JavaScript Kit</a> | <a href="http://www.codingforums.com">CodingForums.com</a> | <a href="http://www.builder.com">Builder.com</a> | <a href="http://freewarejava.com">Freewarejava.com</a></nobr></span>
</div>
</div>
</td>
<td valign="middle"> <a href="#" onmouseover="Scrollable('test2',1);" onmouseout="Scrollable('test2',0);" >
<img src="http://www.dynamicdrive.com/dynamicindex1/pointer.gif" border=0></a>
</td>
</table>
</body>
</html>
Bookmarks