diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/window/screen | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/window/screen')
-rw-r--r-- | files/fr/web/api/window/screen/index.md | 43 |
1 files changed, 13 insertions, 30 deletions
diff --git a/files/fr/web/api/window/screen/index.md b/files/fr/web/api/window/screen/index.md index c86fcb6f61..79bbd5f09f 100644 --- a/files/fr/web/api/window/screen/index.md +++ b/files/fr/web/api/window/screen/index.md @@ -11,45 +11,28 @@ tags: - Écran translation_of: Web/API/Window/screen --- -<div>{{APIRef("CSSOM View")}}</div> +{{APIRef("CSSOM View")}}Retourne une référence à l'objet `screen` associé à la fenêtre. L'object `screen`, qui implémente l'interface {{domxref("Screen")}}, est un objet spécial servant à examiner les propriétés de l'écran qui affiche la fenêtre courante. -<div>Retourne une référence à l'objet <code>screen</code> associé à la fenêtre. L'object <code>screen</code>, qui implémente l'interface {{domxref("Screen")}}, est un objet spécial servant à examiner les propriétés de l'écran qui affiche la fenêtre courante.</div> +## Syntaxe -<h2 id="Syntax">Syntaxe</h2> + objetEcran = window.screen; -<pre class="syntaxbox"><var>objetEcran</var> = <var>window</var>.screen; -</pre> +## Examples -<h2 id="Example">Examples</h2> - -<pre class="brush:js">if (screen.pixelDepth < 8) { +```js +if (screen.pixelDepth < 8) { // utiliser la page en colorisation réduite } else { // utiliser la page en coolorisation normale } -</pre> - -<h2 id="Specification">Spécifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">État</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSSOM View', '#dom-window-screen', 'window.screen')}}</td> - <td>{{Spec2('CSSOM View')}}</td> - <td> </td> - </tr> - </tbody> -</table> +``` -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Spécifications +| Spécification | État | Commentaires | +| ---------------------------------------------------------------------------------------- | -------------------------------- | ------------ | +| {{SpecName('CSSOM View', '#dom-window-screen', 'window.screen')}} | {{Spec2('CSSOM View')}} | | +## Compatibilité des navigateurs -<p>{{Compat("api.Window.screen")}}</p> +{{Compat("api.Window.screen")}} |