我有一个html表:
<table>
<tr>
<td id="news">Some News</td>
</tr>
</table>
我希望<td id="news">
的内容是一个自下而上的滚动文字,显示新闻。如何在JavaScript中实现这一点?
答案 0 :(得分:0)
该脚本需要jQuery,因此在结束标记之前需要以下两行:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="javascript/smoothscroll.js"></script>
答案 1 :(得分:-3)
您可以使用选框标记来实现向上滚动。这是一个example。
<marquee scrollamount="2" direction="up" loop="true">your content</marquee>