當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > 編程其他 > table中的文字滾動(dòng)

table中的文字滾動(dòng)

2012/10/30 10:20:17作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例名稱】

table中的文字滾動(dòng)

【實(shí)例描述】

文字可以在狀態(tài)欄、頁面中滾動(dòng),但和在表格中滾動(dòng)的實(shí)現(xiàn)方法卻不一樣.本例學(xué)習(xí)如何實(shí)現(xiàn)table中的文字滾動(dòng)。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>標(biāo)題頁-學(xué)無憂(denvermotorcycleaccidentlawyer.com)</title> </head> <body> <table border="1"><tr> <td>第一列</td><td> <marquee behavior="alternate" scrollamount="1" scrolldelay="100" width="230">第二列</marquee> </td><td>第三列</td> </tr></table></body> </html>

【運(yùn)行效果】

運(yùn)行效果

【難點(diǎn)剖析】

本例的重點(diǎn)是marquee的“behavior”屬性。此屬性設(shè)置為“altemate”,表示marquee的內(nèi)容到達(dá)容器的邊緣后.按照相反的方向滾動(dòng)回來,周而復(fù)始。
“scrollamount”屬性表示文本滾動(dòng)的速度,值越大速度會(huì)越快。

【源碼下載】

如果你不愿復(fù)制代碼及提高代碼準(zhǔn)確性,你可以點(diǎn)擊:table中的文字滾動(dòng) 進(jìn)行本實(shí)例源碼下載 

標(biāo)簽: table  文字  滾動(dòng)