blob: a3251b0188ae6eace8bec13a082706a9a8a36f88 (
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: Document.onfullscreenchange
slug: Web/API/Document/onfullscreenchange
translation_of: Web/API/Document/onfullscreenchange
---
<div>{{ApiRef("Fullscreen API")}}</div>
<p>La propriété <code><strong>Document</strong></code><strong><code>.onfullscreenchange</code> </strong>est un gestionnaire d'événement pour l'événement {{event("fullscreenchange")}} qui est lancé lorsque le document entre ou sort du mode plein écran.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox"><var>targetDocument</var>.onfullscreenchange = <var>fullscreenChangeHandler</var>;
</pre>
<h2 id="Exemple">Exemple</h2>
<pre class="brush: js">document.onfullscreenchange = function ( event ) {
console.log("FULL SCREEN CHANGE")
};
document.documentElement.onclick = function () {
// requestFullscreen() doit être un gestionnaire d'événement, sinon ça échouera
document.documentElement.requestFullscreen();
}
</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("Fullscreen", "#handler-document-onfullscreenchange", "onfullscreenchange")}}</td>
<td>{{Spec2("HTML WHATWG")}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Document.onfullscreenchange")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{event("fullscreenchange")}}</li>
<li>{{domxref("Document.onfullscreenerror")}}</li>
</ul>
|