diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2022-03-19 22:30:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 22:30:38 +0100 |
commit | 51af369340576bee7073830bbb805103b2349b61 (patch) | |
tree | cc4d2a68c43f7da001868f1f8d8f7678d62647cb /files/fr/web/api/deviceorientationevent/absolute/index.md | |
parent | 1feae14e455488e46a8bbf593ad8f56b9096b724 (diff) | |
download | translated-content-51af369340576bee7073830bbb805103b2349b61.tar.gz translated-content-51af369340576bee7073830bbb805103b2349b61.tar.bz2 translated-content-51af369340576bee7073830bbb805103b2349b61.zip |
Remove {{page}} from Web/API - Fixes #3882 (#4480)
* update audiobuffersourcenode.buffer
* update audiolistener
* fix svg compression
* biquadfilternode
* customevent
* DataTransfer.clearData
* DeviceOrientationEvent/absolute
* Document
* animate
* error element
* mousedown
* mouseup
* gainnode
* Gamepad API
* Geolocation API
* MediaStreamAudioSourceNode
* navigator.getusermedia
* periodicwave
* webglrenderingcontext
* Various fixes/nitpicking
Co-authored-by: cw118 <87150472+cw118@users.noreply.github.com>
Diffstat (limited to 'files/fr/web/api/deviceorientationevent/absolute/index.md')
-rw-r--r-- | files/fr/web/api/deviceorientationevent/absolute/index.md | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/files/fr/web/api/deviceorientationevent/absolute/index.md b/files/fr/web/api/deviceorientationevent/absolute/index.md index aee893522d..7cd7872202 100644 --- a/files/fr/web/api/deviceorientationevent/absolute/index.md +++ b/files/fr/web/api/deviceorientationevent/absolute/index.md @@ -3,35 +3,32 @@ title: DeviceOrientationEvent.absolute slug: Web/API/DeviceOrientationEvent/absolute translation_of: Web/API/DeviceOrientationEvent/absolute original_slug: Web/API/DeviceOrientationEvent.absolute +browser-compat: api.DeviceOrientationEvent.absolute --- -{{ ApiRef() }} +{{APIRef("Device Orientation Events")}} -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 [Orientation et mouvement expliqué](/en/DOM/Orientation_and_motion_data_explained) pour plus de détails. +Cette propriété indique si l'appareil fournit des données d'orientation dans un repère absolu (utilisant les coordonnées par rapport à la Terre) ou s'il utilise un repère arbitraire propre. Voir [le guide sur les données d'orientation et de déplacement](/fr/docs/Web/Events/Orientation_and_motion_data_explained) pour plus de détails. ## Syntaxe - var absolute = instanceOfDeviceOrientationEvent.absolute; +```js +let absolute = instanceOfDeviceOrientationEvent.absolute; +``` -`DeviceOrientationEvent.absolute` retourne un booléen : - -- `true` : si les données d'orientation dans `instanceOfDeviceOrientationEvent` est proposer dans un référentiel terrestre. -- `false` : si les données d'orientation utilisent un référentiel arbitraire. +_`absolute`_ vaut `true` si les données d'orientation fournies par l'évènement `instanceOfDeviceOrientationEvent` sont fournies comme la différence entre l'orientation de l'appareil et celle du repère terrestre ou `false` si les données d'orientation sont fournies relativement à un repère arbitraire fixé par l'appareil. ## Spécifications -| Spécification | Statuts | Commentaires | -| -------------------------------------------- | ---------------------------------------- | ---------------------- | -| {{SpecName('Device Orientation')}} | {{Spec2('Device Orientation')}} | Initial specification. | +{{Specifications}} -## Compatibilité entre les navigateurs +## Compatibilité des navigateurs -{{ page("/en-US/docs/Web/API/DeviceOrientationEvent","Browser_compatibility") }} +{{Compat}} ## Voir aussi -- {{ domxref("DeviceOrientationEvent") }} -- [Detecting device orientation](/en/Detecting_device_orientation) -- [Orientation and motion data explained](/en/DOM/Orientation_and_motion_data_explained) -- {{ domxref("window.ondeviceorientation") }} - -{{ event("deviceorientation") }} +- [`DeviceOrientationEvent`](/fr/docs/Web/API/DeviceOrientationEvent) +- [Détecter l'orientation d'un appareil](/fr/docs/Web/Events/Detecting_device_orientation) +- [Guide sur les données d'orientation et de déplacement](/fr/docs/Web/Events/Orientation_and_motion_data_explained) +- L'évènement [`window.ondeviceorientation`](/fr/docs/Web/API/Window/ondeviceorientation) +- [`deviceorientation`](/fr/docs/Web/API/Window/deviceorientation_event) |