滚动新闻的代码
<MARQUEE onmouSEOver=this.stop() onmouseout=this.start()scrollAmount=4 width=400 height=150 direction="up"> 你要滚动的内容</MARQUEE>
把这段直接放在<td></td>中
scrollamount是滚动速度,数越大越快;direction是方向.
onmouseover=this.stop()是鼠标悬浮停止
onmouseout=this.start()是鼠标离开继续滚动
width和height分别是宽度和高度.根据需要自定义大小.