aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/vrdisplaypresentchange_event/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/window/vrdisplaypresentchange_event/index.md')
-rw-r--r--files/fr/web/api/window/vrdisplaypresentchange_event/index.md97
1 files changed, 46 insertions, 51 deletions
diff --git a/files/fr/web/api/window/vrdisplaypresentchange_event/index.md b/files/fr/web/api/window/vrdisplaypresentchange_event/index.md
index c2abcb5e12..5ba67ffc5b 100644
--- a/files/fr/web/api/window/vrdisplaypresentchange_event/index.md
+++ b/files/fr/web/api/window/vrdisplaypresentchange_event/index.md
@@ -9,81 +9,76 @@ tags:
- vrdisplaypresentchange
translation_of: Web/API/Window/vrdisplaypresentchange_event
---
-<div>{{APIRef("Window")}}</div>
+{{APIRef("Window")}}
-<div>
-<p>L'événement <strong><code>vrdisplaypresentchange</code></strong> de l'<a href="/en-US/docs/Web/API/WebVR_API">API WebVR</a> est déclenché lorsque l'état de présentation d'un affichage VR change — c'est à dire passe de la présentation à la non présentation, ou vice versa.</p>
-</div>
+L'événement **`vrdisplaypresentchange`** de l'[API WebVR](/en-US/docs/Web/API/WebVR_API) est déclenché lorsque l'état de présentation d'un affichage VR change — c'est à dire passe de la présentation à la non présentation, ou vice versa.
<table class="properties">
- <tbody>
- <tr>
- <th scope="row">Bulles</th>
- <td>Non</td>
- </tr>
- <tr>
- <th scope="row">Annulable</th>
- <td>Non</td>
- </tr>
- <tr>
- <th scope="row">Interface</th>
- <td>{{domxref("VRDisplayEvent")}}</td>
- </tr>
- <tr>
- <th scope="row">Propriété de gestionnaire d'événements</th>
- <td><code><a href="/en-US/docs/Web/API/Window/onvrdisplaypresentchange">onvrdisplaypresentchange</a></code></td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">Bulles</th>
+ <td>Non</td>
+ </tr>
+ <tr>
+ <th scope="row">Annulable</th>
+ <td>Non</td>
+ </tr>
+ <tr>
+ <th scope="row">Interface</th>
+ <td>{{domxref("VRDisplayEvent")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">Propriété de gestionnaire d'événements</th>
+ <td>
+ <code
+ ><a href="/en-US/docs/Web/API/Window/onvrdisplaypresentchange"
+ >onvrdisplaypresentchange</a
+ ></code
+ >
+ </td>
+ </tr>
+ </tbody>
</table>
-<h2 id="Exemples">Exemples</h2>
+## Exemples
-<p>Vous pouvez utiliser l'événement <code>vrdisplaypresentchange</code> dans une méthode <code><a href="/en-US/docs/Web/API/EventTarget/addEventListener">addEventListener</a></code> :</p>
+Vous pouvez utiliser l'événement `vrdisplaypresentchange` dans une méthode [`addEventListener`](/en-US/docs/Web/API/EventTarget/addEventListener) :
-<pre class="brush: js">window.addEventListener('vrdisplaypresentchange', function() {
+```js
+window.addEventListener('vrdisplaypresentchange', function() {
if(vrDisplay.isPresenting) {
info.textContent = "L'affichage a commencé à présenter.";
} else {
info.textContent = "L'affichage a cessé de se présenter.";
}
reportDisplays();
-});</pre>
+});
+```
-<p>Ou utilisez la propriété de gestionnaire d'événements <code><a href="/en-US/docs/Web/API/Window/onvrdisplaypresentchange">onvrdisplaypresentchange</a></code> :</p>
+Ou utilisez la propriété de gestionnaire d'événements [`onvrdisplaypresentchange`](/en-US/docs/Web/API/Window/onvrdisplaypresentchange) :
-<pre class="brush: js">window.onvrdisplaypresentchange = function() {
+```js
+window.onvrdisplaypresentchange = function() {
if(vrDisplay.isPresenting) {
info.textContent = "L'affichage a commencé à présenter.";
} else {
info.textContent = "L'affichage a cessé de se présenter.";
}
reportDisplays();
-};</pre>
+};
+```
-<h2 id="Spécifications">Spécifications</h2>
+## Spécifications
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">Statut</th>
- <th scope="col">Commentaire</th>
- </tr>
- <tr>
- <td>{{SpecName('WebVR 1.1', '#dom-window-onvrdisplaypresentchange', 'vrdisplaypresentchange')}}</td>
- <td>{{Spec2('WebVR 1.1')}}</td>
- <td>Définition initiale</td>
- </tr>
- </tbody>
-</table>
+| Spécification | Statut | Commentaire |
+| ------------------------------------------------------------------------------------------------------------------------ | ---------------------------- | ------------------- |
+| {{SpecName('WebVR 1.1', '#dom-window-onvrdisplaypresentchange', 'vrdisplaypresentchange')}} | {{Spec2('WebVR 1.1')}} | Définition initiale |
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+## Compatibilité des navigateurs
-<p>{{Compat("api.Window.vrdisplaypresentchange_event")}}</p>
+{{Compat("api.Window.vrdisplaypresentchange_event")}}
-<h2 id="Voir_également">Voir également</h2>
+## Voir également
-<ul>
- <li><a href="/en-US/docs/Web/API/WebVR_API">WebVR API homepage</a></li>
- <li><a href="http://mozvr.com/">MozVr.com</a> — démos, téléchargements et autres ressources de l'équipe Mozilla VR.</li>
-</ul>
+- [WebVR API homepage](/en-US/docs/Web/API/WebVR_API)
+- [MozVr.com](http://mozvr.com/) — démos, téléchargements et autres ressources de l'équipe Mozilla VR.