之滚动字幕
8.scrollamount属性设置字幕滚动的速度。
9.scrolldelay属性设置字幕内容滚动时停顿的时间,单位为毫秒。如果要让滚动看起来流畅,数值应该尽量小。实例中设置为1毫秒。如果要有步进的感觉,就设置时间长一点吧。
10.width属性设置滚动字幕的宽度。
一套向上滚动字幕的代码: <marquee behavior="scroll" direction="up" width="200" height="150" loop="-1" scrollamount="1" scrolldelay="1" style="font:12px;" onMouseOver="this.stop();" onMouseOut="this.start();"> 滚动字幕内容</marquee>