|
蓝森林 http://www.lslnet.com 2006年8月25日 8:28
[请教]向上滚动的文字栏,鼠标移到文字的时候就停止滚动
请教这样的代码,谢谢大侠!! :) |
onmouseover="stop()" |
能给个完整版的么? |
[html]
<body>
<table border="1">
<tr>
<td>
<marquee onmouseover="stop()" onmouseout="start()" direction="up">abcde</marquee>
</td>
</tr>
</table>
</body>
[/html] |
[html]
<marquee id=gg onmouseover="gg.stop()" onmouseout="gg.start()" direction="up">知白守黑,神意无形……<br>很多事试过后才知道滋味......</marquee>
[/html] |
不错 |
|