首先, 把你要显示的文字分成好几行, 然后分别加到相应的代码里面
以下是我用的代码, 效果会像旁边公告栏显示的那样
<MARQUEE scrollAmount=1 scrollDelay=10 direction=up width=199 height=30><BR>
<DIV align=center><span style="font-weight:700; letter-spacing: 1px"><strong>作为模版与代码的测试用</strong></span></DIV><BR>
<DIV align=center><span style="font-weight:700; letter-spacing: 1px"><strong>God will bless whom?</strong></span></DIV><BR>
<DIV align=center><span style="font-weight:700; letter-spacing: 1px"><strong><FONT size=2 color=black>QQ: 303478792</FONT></strong></span></DIV><BR></MARQUEE>
下面是具体用法
源代码应该是这样的
<MARQUEE scrollAmount=1 scrollDelay=10 direction=up width=199 height=30><BR>
<DIV align=center><span style="font-weight:700; letter-spacing: 1px"><strong>文字</strong></span></DIV><BR>
这一段有几行就复制几次, 最后在结尾要加上 </MARQUEE> 大小写没关系
我用的是<span>的格式, font-weight 是字号, letter-spacing是字间距, <strong> </strong> 是加粗的意思
位置可以先放在<footer>上或下, 然后用frontpage改, 这样可以一并解决位置和大小的问题, 比较容易.
width height 控制宽度和高度 ,scrollamount 控制速度
<marquee direction=down scrollamount=3> 向下滚动</marquee>
<marquee scrollamount=3 behavior=alternate> 来回滚动</marquee>
已经蛮清楚了我觉得......