---
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>