diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:36:08 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:36:08 +0100 |
commit | 39f2114f9797eb51994966c6bb8ff1814c9a4da8 (patch) | |
tree | 66dbd9c921f56e440f8816ed29ac23682a1ac4ef /files/fr/web/api/deviceorientationevent/absolute | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.gz translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.bz2 translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.zip |
unslug fr: move
Diffstat (limited to 'files/fr/web/api/deviceorientationevent/absolute')
-rw-r--r-- | files/fr/web/api/deviceorientationevent/absolute/index.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/files/fr/web/api/deviceorientationevent/absolute/index.html b/files/fr/web/api/deviceorientationevent/absolute/index.html new file mode 100644 index 0000000000..3b1c6f593a --- /dev/null +++ b/files/fr/web/api/deviceorientationevent/absolute/index.html @@ -0,0 +1,56 @@ +--- +title: DeviceOrientationEvent.absolute +slug: Web/API/DeviceOrientationEvent.absolute +translation_of: Web/API/DeviceOrientationEvent/absolute +--- +<p>{{ ApiRef() }}</p> + +<h2 id="Summary" name="Summary">Sommaire</h2> + +<p>Indique si l'appareil partage des données en référentiel absolut c'est à dire sur avec des cordonnées issu du référentiel terrestre, ou si il partage des données utilisant un référentiel arbitraire déterminé par l'appareil. Voir <a href="/en/DOM/Orientation_and_motion_data_explained" title="Orientation et mouvement expliqué">Orientation et mouvement expliqué</a> pour plus de détails.</p> + +<h2 id="Syntax" name="Syntax">Syntaxe</h2> + +<pre class="eval">var absolute = <em>instanceOfDeviceOrientationEvent</em>.absolute; +</pre> + +<p><code>DeviceOrientationEvent.absolute</code> retourne un booléen :</p> + +<ul> + <li><code>true</code> : si les données d'orientation dans <code>instanceOfDeviceOrientationEvent</code> est proposer dans un référentiel terrestre.</li> + <li><code>false</code> : si les données d'orientation utilisent un référentiel arbitraire.</li> +</ul> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statuts</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('Device Orientation')}}</td> + <td>{{Spec2('Device Orientation')}}</td> + <td>Initial specification.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_entre_les_navigateurs">Compatibilité entre les navigateurs</h2> + +<p>{{ page("/en-US/docs/Web/API/DeviceOrientationEvent","Browser_compatibility") }}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{ domxref("DeviceOrientationEvent") }}</li> + <li><a href="/en/Detecting_device_orientation" title="Detecting device orientation">Detecting device orientation</a></li> + <li><a href="/en/DOM/Orientation_and_motion_data_explained" title="Orientation and motion data explained">Orientation and motion data explained</a></li> + <li>{{ domxref("window.ondeviceorientation") }}</li> +</ul> + +<p>{{ event("deviceorientation") }}</p> |