marquee標籤

marquee標籤的參數以下:
1.direction 表示滾動的方向,值能夠是left,right,up,down,默認爲left
如:<marquee direction=#>小A博客導航</marquee>
2.behavior 表示滾動的方式,值能夠是scroll(連續滾動)slide(滑動一次)alternate(來回滾動)
如:<marquee behavior=#>小A博客導航</marquee>
3.loop 表示循環的次數,值是正整數,默認爲無限循環
<marquee loop=# behavior=scroll>小A博客導航</marquee>
4. scrollamount 表示運動速度,值是正整數,默認爲6
如:<marquee scrollamount=20>小A博客導航</marquee>
5.scrolldelay 表示停頓時間,值是正整數,默認爲0,單位是毫秒
如: <marquee scrolldelay=500 scrollamount=100>小A博客導航</marquee>
6.valign 表示元素的垂直對齊方式,值能夠是top,middle,bottom,默認爲middle
7.align 表示元素的水平對齊方式,值能夠是absbottom:絕對底部對齊(與g、p等字母的最下端對齊),absmiddle:絕對中央對齊,baseline:底線對齊,bottom:底部對齊(默認),left:左對齊,middle:中間對齊,right:右對齊,texttop:頂線對齊,top:頂部對齊
  如:<font size=6><marquee align=# width=400>小A博客導航</marquee></font>
8.bgcolor 表示運動區域的背景色,值是16進制的RGB顏色,默認爲白色
如:<marquee bgcolor=aaaaee>小A博客導航</marquee>
9.height、width 表示運動區域的高度和寬度,值是正整數(單位是像素)或百分數,默認width=100% height爲標籤內元素的高度
如:<marquee height=40 width=50% bgcolor=aaeeaa>小A博客導航</marquee>
10.hspace、vspace 表示元素到區域邊界的水平距離和垂直距離,值是正整數,單位是像素。
如:<marquee vspace="100" hspace="100" bgcolor="#CCCCCC">小A博客導航</marquee>
11.onmouseover=this.stop() onmouseout=this.start() 表示當鼠標移上區域的時候滾動中止,當鼠標移開的時候又繼續滾動。
如:<marquee id="scrollarea" direction="up" scrolldelay="10" scrollamount="1" width="150" height="80" onmouseover="this.stop();" onmouseout="this.start();">小A博客導航</marquee>

注意,該標籤並不是W3C認可的標準標籤。ide

相關文章
相關標籤/搜索