属性
behavior-
设置文本在 marquee 元素内如何滚动。可选值有
scroll、slide和alternate。如果未指定值,默认值为scroll。 bgcolor-
通过颜色名称或十六进制值设置背景颜色。
direction-
设置 marquee 内文本滚动的方向。可选值有
left、right、up和down。如果未指定值,默认值为left。 height-
以像素或百分比值设置高度。
hspace-
设置水平边距。
loop-
设置 marquee 滚动的次数。如果未指定值,默认值为 −1,表示 marquee 将连续滚动。
scrollamount-
设置每次滚动时移动的长度(以像素为单位)。默认值为 6。
scrolldelay-
设置每次滚动时的时间间隔(以毫秒为单位)。默认值为 85。请注意,除非指定
truespeed值,否则将忽略任何小于 60 的值,并改为使用 60。 truespeed-
默认情况下,会忽略小于 60 的
scrolldelay值。如果存在truespeed,那些值不会被忽略。 vspace-
以像素或百分比值设置垂直边距。
width-
以像素或百分比值设置宽度。
事件处理器
方法
示例
html
<marquee>该文本将从右向左滚动</marquee>
<marquee direction="up">该文本将从下往上滚动</marquee>
<marquee
direction="down"
width="250"
height="200"
behavior="alternate"
style="border:solid">
<marquee behavior="alternate">该文本将弹跳</marquee>
</marquee>
结果
技术概要
| DOM 接口 | HTMLMarqueeElement |
|---|
规范
| 规范 |
|---|
| HTML> # the-marquee-element-2> |