跑马灯详细用法

一般跑马灯 

<div id="c_9">    

<marquee direction="left" TrueSpeed scrollamount="1" scrolldelay="30" onMouseOver="this.stop();" onMouseOut="this.start();">    

 <img src="images/p_0/p_1.jpg" width="150" height="130" border="1" />    

<img src="images/p_0/p_2.jpg" width="150" height="130" border="1" />   

 <img src="images/p_0/p_3.jpg" width="150" height="130" border="1" />      


 </marquee>  

 </div>   

附:循环滚动基本语法  

<marquee> ... </marquee>  

 移动属性的设置 ,这种移动不仅仅局限于文字,也可以应用于图片,表格等等   方向

   <direction=#> #=left, right ,up ,down <marquee direction=left>从右向左移!</marquee>    

方式   <bihavior=#> #=scroll, slide, alternate <marquee behavior=scroll>一圈一圈绕着走!</marquee>  

 <marquee behavior=slide>只走一次就歇了!</marquee>  <marquee behavior=alternate>来回走</marquee>  

  循环  <loop=#> #=次数;若未指定则循环不止(infinite) <marquee loop=3 width=50% behavior=scroll>只走 3 趟</marquee> 


<P>  

 <marquee loop=3 width=50% behavior=slide>只走 3 趟</marquee>   <marquee loop=3 width=50% behavior=alternate>只走 3 趟!</marquee>    

速度   <scrollamount=#> <marquee scrollamount=20>啦啦啦,我走得好快哟!</marquee>  

  延时   <scrolldelay=#> 

<marquee scrolldelay=500 scrollamount=100>啦啦啦,我走一步,停一停!</marquee>    


外观(Layout)设置    对齐方式(Align)   <align=#> #=top, middle, bottom <font size=6>  


 <marquee align=# width=400>啦啦啦,我会移动耶!</marquee>




底色   <bgcolor=#> #=rrggbb 16 进制数码,或者是下列预定义色彩:  Black, Olive, Teal, Red, Blue, Maroon, Navy, Gray, Lime,   Fuchsia, White, Green, Purple, Silver, Yellow, Aqua <marquee bgcolor=aaaaee>颜色!</marquee>    


面积   <height=# width=#> <marquee height=40 width=50% bgcolor=aaeeaa>面积!</marquee>    




空白   (Margins)<hspace=# vspace=#>   <marquee hspace=20 vspace=20 width=150 bgcolor=ffaaaa align=middle>面积!</marquee>



参数用法介绍
behavior=scroll, slide, alternate跑马方式:循环绕行,只跑一次就停住,来回往复运动
direction=left,right跑马方向:从左向右,从右向左
loop=100跑马次数:循环100次,如不写默认为一直循环
width=100%,height=200跑马范围:宽为100%,高为200像素
scrollamount=20跑马速度:数越大越快
scrolldelay=500跑马延时:毫秒数,利用它可实现跃进式滚动
hspace=20,vspace=20跑马区域与其它区域间的空白大小
bgcolor=#00FFCC跑马区域的背景颜色






 
<html> 
<head><title>跑马灯大全</title> 
<script LANGUAGE="JavaScript"> 
var Mes=new Array(); 
Mes[0]="脚本之家欢迎你! "; 
Mes[1]="感谢你关注脚本之家教程 "; 
Mes[2]="网页特效 之 跑马灯效果大全 "; 
var place=1; 
var i=0; 
function scroll() 

window.status=Mes[i].substring(0, place); 
if (place >= Mes[i].length) 

if(i<2) 

i++; 
place=1; 
window.setTimeout("scroll()",50); 

else 

i=0; 
place=1; 
window.setTimeout("scroll()",50); 


else { 
place++; 
window.setTimeout("scroll()",50); 


</script> 
</head> 
<form name="shooterform" method="get"> 
<body οnlοad="scroll();"> 
<marquee>滚动的文字</marquee> 
<marquee behavior=alternate>表示双向移动</marquee> 
<marquee direction=left>表示运动方向向左</marquee> 
<marquee width=400 behavior=alternate direction=left align=middle border=1>弹来弹去跑马灯!</marquee> 
<marquee scrollamount="30">表示运动方向向左</marquee> 
<marquee width=90%> 
<a href="http://www.jb51.net" target=_blank>带有超链接的跑马灯!点我试试?</a>
 
<a href="http://www.baidu.com" target=_blank>还有一条呢!点我试试?</a> 
</marquee> 
<table width="93%" border="1" cellspacing="0" cellpadding="1" align="center" class="p1"> 
<tr> 
<td width="42%">参数</td> 
<td width="58%">用法介绍</td> 
</tr> 
<tr> 
<td width="42%">behavior=scroll, slide, alternate</td> 
<td width="58%">跑马方式:循环绕行,只跑一次就停住,来回往复运动</td> 
</tr> 
<tr> 
<td width="42%">direction=left,right</td> 
<td width="58%">跑马方向:从左向右,从右向左</td> 
</tr> 
<tr> 
<td width="42%">loop=100</td> 
<td width="58%">跑马次数:循环100次,如不写默认为一直循环</td> 
</tr> 
<tr> 
<td width="42%">width=100%,height=200</td> 
<td width="58%">跑马范围:宽为100%,高为200像素</td> 
</tr> 
<tr> 
<td width="42%">scrollamount=20</td> 
<td width="58%">跑马速度:数越大越快</td> 
</tr> 
<tr> 
<td width="42%">scrolldelay=500</td> 
<td width="58%">跑马延时:毫秒数,利用它可实现跃进式滚动</td> 
</tr> 
<tr> 
<td width="42%">hspace=20,vspace=20</td> 
<td width="58%">跑马区域与其它区域间的空白大小</td> 
</tr> 
<tr> 
<td width="42%">bgcolor=#00FFCC</td> 
<td width="58%">跑马区域的背景颜色</td> 
</tr> 
</table>    
</body> 
</form> 
</html> 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值