创建滚动新闻,菜鸟请高手指点

来源:百度知道 编辑:UC知道 时间:2024/05/30 10:33:47
用dw做滚动新闻,为什么当鼠标放上去他不停止呢??我输入的代码是onmounceover=stop() onmouceout=start().是因为dw的版本问题吗??

<div id="marquees">
<a href="#">你可曾有过无数的梦想,</a><br>
<br>
<a href="#">却在时光的流逝里幻灭 </a><br>
<br>
<a href="#">你可曾对未来期待憧憬,</a><br>
<br>
<a href="#">却在成长的岁月中迷失</a><br>
<br>
</div>
<script language="JavaScript">
marqueesHeight=200;
stopscroll=false;
with(marquees){
style.width=0;
style.height=marqueesHeight;
style.overflowX="visible";
style.overflowY="hidden";
noWrap=true;
onmouseover=new Function("stopscroll=true");
onmouseout=new Function("stopscroll=false");
}
document.write('<div id="templayer" style="position:absolute;z-index:1;visibility:hidden"></div>');
preTop=0; currentTop=0;
functi