1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
---
title: <marquee>
slug: Web/HTML/Element/marquee
tags:
- marquee
translation_of: Web/HTML/Element/marquee
---
<div>{{HTMLRef}}</div>
<div>{{obsolete_header}}</div>
<p>HTML marquee 元素(<code><marquee>)</code> 用来插入一段滚动的文字。你可以使用它的属性控制当文本到达容器边缘发生的事情。</p>
<div class="warning">
<p> <code><marquee></code> 元素已经 <strong>过时</strong>,请不要再使用。尽管一些浏览器仍然支持它,但它不是必须的。此外,使用这个元素基本上是你可以对你的用户做最糟糕的事情之一,所以请不要这样做。</p>
</div>
<h2 id="属性">属性</h2>
<dl>
<dt>{{htmlattrdef("behavior")}}</dt>
<dd>设置文本在 marquee 元素内如何滚动。可选值有 <code>scroll<font face="Open Sans, Arial, sans-serif">,</font></code><code>slide</code> 和 <code>alternate。</code> 如果未指定值,默认值为 <code>scroll。</code></dd>
<dt>{{htmlattrdef("bgcolor")}}</dt>
<dd>通过颜色名称或十六进制值设置背景颜色。</dd>
<dt>{{htmlattrdef("direction")}}</dt>
<dd>设置 marquee 内文本滚动的方向。可选值有 <code>left</code>, <code>right</code>, <code>up</code> and <code>down。</code>如果未指定值,默认值为 <code>left。</code></dd>
<dt>{{htmlattrdef("height")}}</dt>
<dd>以像素或百分比值设置高度。</dd>
<dt>{{htmlattrdef("hspace")}}</dt>
<dd>设置水平边距。</dd>
<dt>{{htmlattrdef("loop")}}</dt>
<dd>设置 marquee 滚动的次数。如果未指定值,默认值为 −1,表示 marquee 将连续滚动。</dd>
<dt>{{htmlattrdef("scrollamount")}}</dt>
<dd>设置每次滚动时移动的长度(以像素为单位)。默认值为 6。</dd>
<dt>{{htmlattrdef("scrolldelay")}}</dt>
<dd>设置每次滚动时的时间间隔(以毫秒为单位)。默认值为 85。请注意, 除非指定 truespeed 值,否则将忽略任何小于 60 的值,并改为使用 60。</dd>
<dt>{{htmlattrdef("truespeed")}}</dt>
<dd>默认情况下,会忽略小于 60 的 scrolldelay 值。如果存在 truespeed,那些值不会被忽略。</dd>
<dt>{{htmlattrdef("vspace")}}</dt>
<dd>以像素或百分比值设置垂直边距。</dd>
<dt>{{htmlattrdef("width")}}</dt>
<dd>以像素或百分比值设置宽度。</dd>
</dl>
<h2 id="Event_handlers" name="Event_handlers">事件回调</h2>
<dl>
<dt>{{htmlattrdef("onbounce")}}</dt>
<dd>当 marquee 滚动到结尾时触发。它只能在 behavior 属性设置为 alternate 时触发。</dd>
<dt>{{htmlattrdef("onfinish")}}</dt>
<dd>当 marquee 完成 loop 属性设置的值时触发。它只能在 loop 属性设置为大于 0 的某个数字时触发。</dd>
<dt>{{htmlattrdef("onstart")}}</dt>
<dd>当 marquee 开始滚动时触发。</dd>
</dl>
<h2 id="Methods" name="Methods">方法</h2>
<dl>
<dt>start</dt>
<dd>开始滚动 marquee。</dd>
<dt>stop</dt>
<dd>停止滚动 marquee。</dd>
</dl>
<h2 id="示例">示例</h2>
<pre class="brush: html"><marquee>This text will scroll from right to left</marquee>
<marquee direction="up">This text will scroll from bottom to top</marquee>
<marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid">
<marquee behavior="alternate">
This text will bounce
</marquee>
</marquee></pre>
<p>{{EmbedLiveSample("Examples", 600, 450)}}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'obsolete.html#the-marquee-element-2', '<marquee>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Make it obsolete in favor of CSS but define its expected behavior, for backward compatibility.</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'obsolete.html#the-marquee-element-0', '<marquee>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Make it obsolete in favor of CSS but define its expected behavior, for backward compatibility.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("html.elements.marquee")}}
|