aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/innerwidth/index.html
blob: a76af5343a4ca1f4b4a8c13edee4326ca08d61ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: window.innerWidth
slug: Web/API/Window/innerWidth
translation_of: Web/API/Window/innerWidth
---
<p>{{ ApiRef() }}</p>

<h2 id="R.C3.A9sum.C3.A9">Résumé</h2>

<p>Récupère la largeur du contenu visible de la fenêtre de navigation en incluant, s'il est visible, l'ascenseur vertical.<br>
 Permet également de fixer une largeur pour le domaine d'affichage de la fenêtre.</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre>var largeur = window.innerWidth;
</pre>

<p>Voir aussi : <a href="/fr/docs/Web/API/Window/innerHeight">window.innerHeight</a>, <a href="/fr/docs/Web/API/Window/outerHeight">window.outerHeight</a> and <a href="/fr/docs/Web/API/Window/outerWidth">window.outerWidth</a>.</p>

<h2 id="Valeur_renvoy.C3.A9e">Valeur renvoyée</h2>

<dl>
 <dt><code>innerWidth </code></dt>
 <dd>un entier (nombre de pixels);</dd>
</dl>

<h2 id="Notes">Notes</h2>

<p>La propriété <code>innerWidth</code> est supportée par tous les objet "window" comme par exemple une fenêtre, une frame, un frameset, ou une fenêtre secondaire.</p>

<h2 id="Example">Example</h2>

<pre>// Retourne la largeur de la fenêtre
var largeur = window.innerWidth;

// Retourn la largeur de la fenêtre à l'intérieur d'une "frameset"
var largeur = self.innerWidth;

// Retourne la largeur de la fenêtre du "frameset" parent
var largeurDeLaFrame = parent.innerWidth;

// Retourne la largeur de la fenêtre du "frameset" principal
var largeurDuFrameset = top.innerWidth;</pre>

<p>Pour changer la taille de la fenêtre, voir {{domxref("window.resizeBy")}} and {{domxref("window.resizeTo")}}.</p>

<h2 id="Specifications">Spécifications</h2>

<table class="standard-table">
  <thead>
    <tr>
      <th scope="col">Spécification</th>
      <th scope="col">Statut</th>
      <th scope="col">Commentaire</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>{{SpecName('CSSOM View', '#dom-window-innerwidth', 'window.innerWidth')}}</td>
      <td>{{Spec2('CSSOM View')}}</td>
      <td>Définition initiale.</td>
    </tr>
  </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>

<p>{{Compat("api.Window.innerWidth")}}</p>