blob: ca7e44107e203fa85b55e426b9114c11cf4aa735 (
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
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
|
---
title: HTMLIFrameElement.mute()
slug: Web/API/HTMLIFrameElement/mute
translation_of: Mozilla/Gecko/Chrome/API/Browser_API/mute
---
<p>{{APIRef("HTML DOM")}}{{non-standard_header}}</p>
<p>Il metodo <code>mute()</code> del {{domxref("HTMLIFrameElement")}} muta qualsiasi audio in riproduzione nel browser {{HTMLElement("iframe")}}.</p>
<h2 id="Sintassi">Sintassi</h2>
<pre class="syntaxbox"><em>instanceOfHTMLIframeElement</em>.mute();</pre>
<h3 id="Ritorna">Ritorna</h3>
<p>Nulla.</p>
<h3 id="Parametri">Parametri</h3>
<p>Nessuno.</p>
<h2 id="Example" name="Example">Esempio</h2>
<pre class="brush:js">var browser = document.querySelector('iframe');
browser.mute();
</pre>
<h2 id="Specification" name="Specification">Specifica</h2>
<p>Non è parte di nessuna specifica.</p>
<h2 id="Compatibilità_browser">Compatibilità browser</h2>
<div>{{CompatibilityTable}}</div>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Caratteristica</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Supporto base</td>
<td>{{CompatNo}}</td>
<td>{{CompatGeckoDesktop(47)}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Caratteristica</th>
<th>Android</th>
<th>Android Webview</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
<th>Chrome for Android</th>
</tr>
<tr>
<td>Supporto base</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<p>[1] Supportato solo in codice chrome.</p>
<h2 id="Vedi_anche">Vedi anche</h2>
<ul>
<li><a href="/en-US/docs/WebAPI/Browser">Usando le Browser API</a></li>
</ul>
|