[求助]滚动字体连接
各位前辈,我想做一个文字向上滚动,鼠标放在文字上文字就停止滚动,点击就连接到另一个网页的效果,请问代码应如何写,感谢各位赐教,小弟不胜感激!!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>滚动效果</title>
</head>
<body>
<table width="600" height="300" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="bottom">
<marquee direction="up" onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="1" scrolldelay="1">
<table width="235" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.sina.com.cn">滚动效果——鼠标点击就进入新浪网</a></td>
</tr>
</table>
</marquee>
</td>
</tr>
</table>
</body>
</html>
[此贴子已经被作者于2006-6-20 9:27:57编辑过]