制作一个滚动的新闻栏目
如何制作一个滚动的新闻栏目 如下<div>
1.神七飞天了
2.中国加油
3.奥运加油
</div>
新闻是一直向上滚到的,鼠标放到上面停止滚动 --------------------编程问答--------------------
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
<tr>
<td><marquee Direction="up" behavior="scroll" scrollDelay=80
scrollamount="5" onmouseover="this.stop()" onmouseout="this.start()">
<a href="aaa.asp"><IMG src="picture.gif" border=0>这就是图片和文字一块移动</a>
</marquee> </td>
</tr>
</table>
补充:.NET技术 , ASP.NET