blob: 6b9805c3b24e91b5977708d0b7fbb41452706460 (
plain)
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
|
---
title: <bgsound>
slug: Web/HTML/Element/bgsound
translation_of: Web/HTML/Element/bgsound
---
<div>{{non-standard_header}}</div>
<h2 id="概要">概要</h2>
<p><bgsound>是 IE 浏览器中设置网页背景音乐的元素。</p>
<div class="note">
<p><strong>不要使用它!</strong>想要在网页中嵌入音频,应当使用{{HTMLElement("audio")}}.</p>
</div>
<h2 id="属性">属性</h2>
<dl>
<dt>{{htmlattrdef("balance")}}</dt>
<dd>该属性取值在-10,000 到 +10,000,它决定扬声器之间的音量如何分配。</dd>
<dt>{{htmlattrdef("loop")}}</dt>
<dd>该属性表明音频被播放的次数,是一个数值或者关键字 infinite。</dd>
<dt>{{htmlattrdef("src")}}</dt>
<dd>该属性定义了音频文件的 URL,必须是以下格式之一:.wav,.au,.mid</dd>
<dt>{{htmlattrdef("volume")}}</dt>
<dd>该属性值域为-10,000 到 0,它决定背景音乐的音量大小。</dd>
</dl>
<h2 id="示例">示例</h2>
<pre class="brush:html"><bgsound src="sound1.mid">
<bgsound src="sound2.au" loop="infinite">
</pre>
<h2 id="备注">备注</h2>
<p>类似的功能在一些版本的 Netscape 中使用<embed>标签来调用音频播放器。</p>
<p>你可以使用自闭合标签<code><bgsound />。然后由于它并非标准的一部分,XHTML 会认为它无效。</code></p>
<h2 id="浏览器兼容">浏览器兼容</h2>
{{Compat("html.elements.bgsound")}}
<h2 id="参见">参见</h2>
<ul>
<li>The {{htmlelement("audio")}}, which is the standard element to embed audio in a document.</li>
</ul>
<div>{{HTMLRef}}</div>
|