一、基本語法形式如: < marquee>....< /marquee>例如:< marquee>啦啦啦,我會移動耶!< /marquee>二、設(shè)置文字移動的方式A、設(shè)置文字的移動方向基本語法如:其中,“#”的取值為:left right up down例:< marquee direction="left">啦啦啦,我從右向左移!< /marquee>,以此類推。B、設(shè)置文字移動的方式 其基本語法形式如:,其中“#”的取值為scroll,slide,alternate,至于這三個英文代表什么意思,請各位一試便知!C、設(shè)置文字移動循環(huán)的次數(shù) < marquee loop="#"> D、設(shè)置文字移動的速度 基本語法如:< scrollamount="#"> 例:< marquee scrollamount="20">啦啦啦,我走得好快喲!< /marquee>E、設(shè)置文字移動延時 基本語法如:< scrolldelay="#">,其中,“?!比≈禐檠訒r的毫秒數(shù)。三、設(shè)置移動文字的外觀A、設(shè)置文字的對齊方式 語法如:< marquee align=top或middle或botton>B、設(shè)置marquee的底色基本語法如:< marquee bgcolor="#"> 其中,"#"取值為"rrggbb",即16進制數(shù)表示的RGB顏色值,或者直接寫出顏色的英文。C、設(shè)置移動文字的寬度、高度基本語法如:< maruqee height="#" width="#"> 。寫完收工。1.方向direction #=left, right 例:<marquee direction=left>從右向左移動</marquee>> <marquee direction=right>從左向右移動</marquee>> 2.次數(shù) <bihavior=#> #=scroll, slide, alternate 例:<marquee behavior=scroll>一圈一圈的繞著移動</marquee>> <marquee behavior=slide>只移動一次就停</marquee>> <marquee behavior=alternate>來回移動,不停</marquee>> 3.循環(huán) <loop=#> # =次數(shù),若未指定則循環(huán)不止(infinite) 例:<marquee loop=3 width=50% behavior=scroll>只走 3 趟</marquee> 4.速度加快 <scrollamount=#> 例:<marquee scrollamount=20>移動速度加快</marquee>> 5.速度減慢 <scrolldelay=#> 例:<marquee scrolldelay=500 scrollamount=100>移動速度減慢</marquee> 6.底色 <bgcolor=#> #=rrggbb 16進制數(shù)碼,或者是下列預定義色彩: Black, Olive, Teal, Red, Blue, Maroon, Navy, Gray, Lime, Fuchsia, White, Green, Purple, Silver, Yellow, Aqua例:<marquee bgcolor=red>是紅色的</marquee> 7.面積 <height=# width=#> 例:<marquee height=80 bgcolor=red>面積變大了</marquee>網(wǎng)頁中文字上下移動代碼:<DIV> <TABLE borderColor=#000000 cellSpacing=0 cellPadding=5 bgColor=#6699ff border=1> <TBODY> <TR> <TD> <MARQUEE scrollAmount=1 scrollDelay=10 direction=up width=180 height=100> <P align=center><FONT face=黑體 color=#ffffff>你所要輸入的主題</FONT> <P><FONT color=#ffffff><BR>你所要輸入的主題<BR>你所要輸入的正文內(nèi)容</FONT></MARQUEE></TD></TR></TBODY></TABLE></DIV> 注:<BR>=換行代碼 borderColor=邊框顏色代碼 bgColor=背景顏色代碼 scrollAmount=滾動速度scrollDelay=設(shè)置字幕內(nèi)容滾動時停頓的時間(如果要讓滾動看起來流暢,數(shù)值應該盡量小) direction=方向(上下左右依次是"up","down","left","right") width=滾動界面的寬 height=滾動界面的高 FONT color=文字顏色 cellPadding=文字縮進寬度上面的數(shù)值可以根據(jù)自己的需要更改!!! |
|
來自: myweblog > 《文字移動代碼大全》