blob: 00da33c3b27917220760323c2d8df5035ac50ba6 (
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: HTMLMediaElement.pause()
slug: Web/API/HTMLMediaElement/pause
translation_of: Web/API/HTMLMediaElement/pause
---
<p>{{APIRef("HTML DOM")}}</p>
<p>El método <strong><code>HTMLMediaElement.pause()</code></strong> pausará la reproducción de los medios, si los medios ya están en pausa, este método no tendrá efecto.</p>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox"><em>HTMLMediaElement</em>.pause()</pre>
<h3 id="Parametros">Parametros</h3>
<p>Ninguno.</p>
<h3 id="Valor_de_retorno">Valor de retorno</h3>
<p>Ninguno.</p>
<h3 id="Excepciones">Excepciones</h3>
<p>Ninguno.</p>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<tbody>
<tr>
<th>Especificación</th>
<th>Estado</th>
<th>Comentarios</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'embedded-content.html#dom-media-pause', 'pause()')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Initial definition; living specification.</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C','embedded-content-0.html#dom-media-pause','pause()')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_de_navegadores">Compatibilidad de navegadores</h2>
<p>{{Compat("api.HTMLMediaElement.pause")}}</p>
|