marquee標簽屬性詳解 direction 屬性 屬性的參數(shù)值 示例代碼 示例 direction="left" 向左(默認值)
<marquee direction="left">我向左滾動</marquee>
direction="right" 向右 <marquee direction="right">我向右滾動</marquee>direction="up"
<marquee direction="up">我向上滾動</marquee>
direction="down" 向下
<marquee direction="down">我向下滾動</marquee>
behavior 屬性 屬性的參數(shù)值 示例代碼 示例 behavior="alternate" 來回滾動 <marquee behavior="alternate">我來回滾動</marquee>behavior="scroll" 單方向循環(huán)滾動
<marquee behavior="scroll">我單方向循環(huán)滾動</marquee>
<marquee behavior="scroll" direction="up" height="30">我改單方向向上循環(huán)滾動</marquee>
我改單方向向上循環(huán)滾動 behavior="slide" 只滾動一次
<marquee behavior="slide">我只滾動一次</marquee>
<marquee behavior="slide" direction="up">我改向上只滾動一次了</marquee>
我改向上只滾動一次了 loop 屬性 屬性的參數(shù)值 示例代碼 示例 loop="2" 滾動2次
<marquee loop="2">我滾動2次。</marquee>
loop="infinite" 無限循環(huán)滾動
<marquee loop="infinite">我無限循環(huán)滾動。</marquee>
loop="-1" 無限循環(huán)滾動
<marquee loop="-1">我無限循環(huán)滾動。</marquee>
scrollamount速度屬性 scrolldelay 延時屬性 屬性的參數(shù)值 示例代碼 示例 scrollamount="100" 速度很快
<marquee scrollamount="100">我速度很快</marquee>
scrollamount="50" 速度慢了些
<marquee scrollamount="50">我慢了些。</marquee>
scrolldelay="30" 小步前進
<marquee scrolldelay="30">我小步前進。</marquee>
scrolldelay="1000" scrollamount="100" 大步前進
<marquee scrolldelay="1000" scrollamount="100">我大步前進。</marquee>
bgcolor 屬性 背景顏色 屬性的參數(shù)值 示例代碼 示例
bgcolor屬性文字滾動范圍的背景顏色,參數(shù)值是16進制(形式:#AABBCC或#AA5566等)或預定義的顏色名字(如red、yellow、blue等)。
<marquee behavior=="slide" direction="left" bgcolor="yellow">我的背景色是黃色的</marquee>
width height 屬性 屬性的參數(shù)值 示例代碼 示例
width和height屬性的作用決定滾動文字在頁面中的矩形范圍大小。
<marquee width="300" height="30" bgcolor="red">我寬300像素,高30像素。</marquee>
hspace vspace 屬性 屬性的參數(shù)值 示例代碼 示例
hspace和vspace屬性這兩個屬性決定滾動矩形區(qū)域距周圍的空白區(qū)域。
<marquee width="300" height="30" vspace="10" hspace="10" bgcolor="red">我矩形邊緣水平和垂直距周圍各10像素。</marquee> <marquee width="300" height="30" vspace="50" hspace="50" bgcolor="red">我矩形邊緣水平和垂直距周圍各50像素。</marquee>
onmouseover =this.stop() onmouseout =this.start() 屬性 屬性的參數(shù)值 示例代碼 示例 表示當鼠標移上區(qū)域的時候滾動停止,當鼠標移開的時候又繼續(xù)滾動。
<marquee onmouseover=this.stop() onmouseout=this.start()>表示當鼠標移上區(qū)域的時候滾動停止,當鼠標移開的時候又繼續(xù)滾動。</marquee>
valign align 對齊屬性 這里是輸入文字 這里是輸入文字 這里是輸入文字 valign 表示元素的垂直對齊方式,值可以是top,middle,bottom,默認為middle。這個屬性在TABLE標簽的表格處理文字。<MARQUEE scrollAmount=3 behavior=alternate> <TABLE borderColor=#003333 align=center border=1> </MARQUEE> <marquee direction=up width="300" height="200" bgcolor=#ccffff><P align=center>這個屬性決定滾動文字位于距形內邊框的上下左右位置。</P></marquee> |
|
來自: 昵稱27831725 > 《JSP》