Forum Moderators: open
<marquee>
<a href="foo.html">link</a>
<a href="bar.html">another link</a>
</marquee>
Stick whatever HTML you like between the marquee tags and it'll scroll nicely across the screen. Google for it if you want it scroll the other way or bounce, or stay between two points or whatever, there's plenty.
J.
Yes, I know this is an evil Microsoft tag but it's supported by everything now, so that's OK :)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function strtScroll(){
scl_txt=document.getElementById("sclTxt");
end_pt=scl_txt.offsetHeight;
strt_pt=end_pt;
divScroll();
}
function divScroll() {
if (strt_pt<-end_pt) strt_pt=end_pt;
strt_pt--;
scl_txt.style.top=(strt_pt+"px");
tOVal=setTimeout("divScroll()",10); // larger number = slower scroll
}
window.onload=strtScroll;
</script>
</head>
<body>
<div style="position:relative;top:50px;width:335px;height:360px;overflow:hidden;">
<div id="sclTxt" style="position:relative;font-family: arial, sans-serif; font-size:200%;color:#808080;">
AQUATIC STAKEHOLDERS' MEETING June 13: The Unified
Albenon Aquatic Task Force will be holding a meeting to address the future of
aquatics in Albenon. See the Event Calendar for details.
</div>
</div>
</body>
</html>