aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/mediastreamevent/index.html
blob: c398c36e7d85552a5313949133bebc501eedb9e9 (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
53
54
55
56
57
58
59
60
61
62
63
---
title: MediaStreamEvent
slug: Web/API/MediaStreamEvent
translation_of: Web/API/MediaStreamEvent
---
<p>{{APIRef("WebRTC")}}{{SeeCompatTable}}</p>

<p> <strong><code>MediaStreamEvent</code></strong> 接口表示发生在 {{domxref("MediaStream")}}中的事件.这种类型返回两个事件: {{event("addstream")}} 和 {{event("removestream")}}.</p>

<h2 id="Properties">Properties</h2>

<p><em>一个 {{domxref("MediaStreamEvent")}} <font>作为一个</font> {{domxref("Event")}}, </em>该事件也实现了这些属性.</p>

<dl>
 <dt>{{domxref("MediaStreamEvent.stream")}} {{readOnlyInline}}</dt>
 <dd>包含了 {{domxref("MediaStream")}} 以及相关的事件流.</dd>
</dl>

<h2 id="Constructors">Constructors</h2>

<dl>
 <dt>{{domxref("MediaStreamEvent.MediaStreamEvent()", "MediaStreamEvent()")}}</dt>
 <dd>返回一个新的 <code>MediaStreamEvent</code>.  它需要两个参数, 第一个为 {{domxref("DOMString")}} 代表事件的类型; 第二个是一个 {{domxref("MediaStream")}}集合 .</dd>
</dl>

<h2 id="Methods">Methods</h2>

<p><em>一个 {{domxref("MediaStreamEvent")}} <font>作为一个</font> {{domxref("Event")}}, <font>这个事件也实现了这些属性</font></em><em><font>没有特定的</font> <em>{{domxref("MediaStreamEvent")}}</em> 方法.</em></p>

<h2 id="Examples">Examples</h2>

<pre class="brush: js">pc.onaddstream = function( ev ) {
  alert("A stream (id: '" + ev.stream.id + "') has been added to this connection.");
};
</pre>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{ SpecName('WebRTC 1.0', '#idl-def-MediaStreamEvent', 'MediaStreamEvent') }}</td>
   <td>{{Spec2('WebRTC 1.0')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

{{Compat("api.MediaStreamEvent")}}

<h2 id="See_also">See also</h2>

<ul>
 <li><a href="/en-US/docs/Web/Guide/API/WebRTC" title="/en-US/docs/CSS/Using_CSS_animations">WebRTC</a></li>
 <li>Its usual target: {{domxref("RTCPeerConnection")}}.</li>
</ul>