[code]<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无间断marquee</title>
<style>a{text-decoration:none;color:3366cc}</style>
</head>
<body>
<!--
****fason(2003-5-17)****
-->
<div id=oDiv style="width:150;border:1 solid red;overflow:hidden;height:200" οnmοuseοver="clearInterval(s)" οnmοuseοut="s=setInterval(fsnMarquee,30)">
<span id=oSpn>
<a href='#'>1111111</a><br>
<a href='#'>2222222</a><br>
<a href='#'>3333333</a><br>
<a href='#'>4444444</a><br>
<a href='#'>5555555</a><br>
<a href='#'>6666666</a><br>
<a href='#'>7777777</a><br>
<a href='#'>8888888</a><br>
<a href='#'>9999999</a><br>
</span>
</div>
<script>
var i=0
var s=null
function fsnMarquee(){
if(oDiv.scrollTop>=oSpn.offsetHeight-oDiv.offsetHeight-50){
oSpn.innerHTML+=oSpn.children[i].outerHTML
i++
}
else oDiv.scrollTop++;
}
window.οnlοad=function(){s=setInterval(fsnMarquee,100)}
</script>
</body>
</html>
[/code]
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无间断marquee</title>
<style>a{text-decoration:none;color:3366cc}</style>
</head>
<body>
<!--
****fason(2003-5-17)****
-->
<div id=oDiv style="width:150;border:1 solid red;overflow:hidden;height:200" οnmοuseοver="clearInterval(s)" οnmοuseοut="s=setInterval(fsnMarquee,30)">
<span id=oSpn>
<a href='#'>1111111</a><br>
<a href='#'>2222222</a><br>
<a href='#'>3333333</a><br>
<a href='#'>4444444</a><br>
<a href='#'>5555555</a><br>
<a href='#'>6666666</a><br>
<a href='#'>7777777</a><br>
<a href='#'>8888888</a><br>
<a href='#'>9999999</a><br>
</span>
</div>
<script>
var i=0
var s=null
function fsnMarquee(){
if(oDiv.scrollTop>=oSpn.offsetHeight-oDiv.offsetHeight-50){
oSpn.innerHTML+=oSpn.children[i].outerHTML
i++
}
else oDiv.scrollTop++;
}
window.οnlοad=function(){s=setInterval(fsnMarquee,100)}
</script>
</body>
</html>
[/code]