作者accordingto (Knoppix)
看板Web_Design
标题Re: [问题] 让跑马灯停止或跑动
时间Fri Oct 22 10:35:55 2004
※ 引述《ckf (看到萤幕就会头晕的病)》之铭言:
: 请问如何让下列跑马灯可以再滑鼠移过去时停止, 移走又开始跑的效果?
: 我找到onMouseOver=this.stop()以及onMouseOut=this.start()这两个
: 用法, 但不知道该加到哪里, 谢谢
做法像下面这样
<script language=JavaScript>
var index = 2 //跑马灯项目数量
link = new Array(index-1);
text = new Array(index-1);
//项目1
link[0] ='
http://www.google.com.tw/'
text[0] ='googole'
//项目2
link[1] ='
http://www.yahoo.com.tw/'
text[1] ='yahoo'
//以下为跑马灯
document.write ("<marquee scrolldelay='120' direction='left'"); //方向
document.write ("width='188' height='15'
id='howard'"); //长宽
document.write ("
onmouseover=howard.stop() onmouseout=howard.start()>");
for (i=0;i<index;i++){
document.write ("<font> ★</font>"); //分隔星星
document.write ("<a href="+link[i]+" target='_blank'>");
document.write ("<font color=darkblue>"+text[i]+"</font>");
document.write ("</a>");
}
document.write ("</marquee>")
</script>
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.218.51.174
1F:推 ckf:many thanks! :) 61.231.86.222 10/22