注册 登录
编程论坛 WEB前端(UI)

帮个忙

langwing 发布于 2008-04-10 13:28, 1310 次点击
请问<marquee ***>文字</marquee>要怎样才能使鼠标移动到文字上时文字就停止滚动?
谢谢
5 回复
#2
lmhllr2008-04-10 17:08
onmouseover="this.stop();"
#3
langwing2008-04-11 07:53
marquee
谢谢了,知道了
#4
buzaidengdai2008-04-11 21:38
回复 2# 的帖子
那么 我这怎么鼠标指别的地方去了 字也不走了呀
怎么改呀 谢谢
这是代码 <html>
<head>
<title>动作</title>
</head>
<body>
<marquee onmouseover="this.stop();">我会走了
</marquee>
</body>
</html>
#5
langwing2008-04-12 10:44
回三楼
<html>
<head>
<title>动作</title>
</head>
<body>
<marquee onmouseover="this.stop();" onmouseout="this.start();">我会走了
</marquee>
</body>
</html>
#6
buzaidengdai2008-04-14 15:40
也是 我真笨
你说的也是
既然那个是 STOP  开始当然是  START 了  谢谢了
我真是一个笨蛋
1