<marquee>
优质
小牛编辑
123浏览
2023-12-01
描述 (Description)
HTML 标签用于滚动显示在网站页面水平方向或垂直方向上显示的文本或图像,具体取决于设置。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee>This is basic example of marquee</marquee>
<marquee direction = "up">The direction of text will be from bottom to top.</marquee>
</body>
</html>
全局属性 (Global Attributes)
此标记支持 - HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML 标记还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
behavior | scroll slide alternate | 定义滚动的类型。 |
bgcolor | rgb(x,x,x) #xxxxxx colorname | Deprecated - 定义滚动内容的方向。 |
direction | up down left right | 定义滚动内容的方向。 |
height | pixels or % | 定义选框的高度。 |
hspace | pixels | 指定选框周围的水平空间。 |
loop | number | 指定循环的次数。 默认值为INFINITE,这意味着选取框无休止地循环。 |
scrolldelay | seconds | 定义每次跳转之间延迟的时间。 |
scrollamount | number | 定义跳跃的距离。 |
width | pixels or % | 定义选框的宽度。 |
vspace | pixels | 指定选取框周围的垂直空间。 |
事件属性 (Event Attributes)
此标记支持 - HTML Events Reference描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | ? |