文字滚动
實現文字滾動,應用<marquee>標簽
align:滾動內容對其方式------top(頂端對齊),middle,botton
direction:滾動方向-----up,down,left,right
behavior:滾動方式-----scroll(循環滾動),slide(一次滾動),alternate(交替滾動)
loop:滾動次數,取值為-1或infinite(無數次)
scrollamount:滾動速度,單位為像素
scrolldelay:兩次滾動的間隔時間
width:滾動區域寬度
height:滾動區域高度
bgcolor:滾動區域背景顏色
hspace:滾動區域與瀏覽器邊界的水平距離
vspace:滾動區域與瀏覽器邊界的垂直距離
網頁中添加滾動文字
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <marquee direction="up"onMouseOver="this.scrollAmount='1'" onMOuseOut="this.scrollAmount='2'"onMouseDown="this.scrollAmount='4';this.direction='down'"onMouseUp="this.scrollAmount='1';this.direction='up'"scrollAmount="2"height="291"> <table cellspacing="2" cellpadding="0" border="0" width="100%" align="center"><tr><td height="30" style="color:yellow;font-size:10pt;font-weight:bold;"><a href="#" >萌妻食神:第1話 南國佳瑤初到來</a></td></tr><tr><td height="20" align="center">國創 中國大陸 連載中, 每周六 12:00更新 AV39054334</td></tr><tr><td height="30" style="color:yellow;font-size:10pt;font-weight: bold;"><a href="#">萌妻食神:第2話 異鄉何處尋安身</a></td></tr><tr><td height="20" align="center">國創 中國大陸 連載中, 每周六 12:00更新 AV39054334</td></tr> </table> </marquee> </body> </html>總結