diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/dompointreadonly | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/dompointreadonly')
-rw-r--r-- | files/fr/web/api/dompointreadonly/index.html | 128 | ||||
-rw-r--r-- | files/fr/web/api/dompointreadonly/w/index.html | 106 | ||||
-rw-r--r-- | files/fr/web/api/dompointreadonly/x/index.html | 108 | ||||
-rw-r--r-- | files/fr/web/api/dompointreadonly/y/index.html | 108 | ||||
-rw-r--r-- | files/fr/web/api/dompointreadonly/z/index.html | 109 |
5 files changed, 559 insertions, 0 deletions
diff --git a/files/fr/web/api/dompointreadonly/index.html b/files/fr/web/api/dompointreadonly/index.html new file mode 100644 index 0000000000..d26edef44d --- /dev/null +++ b/files/fr/web/api/dompointreadonly/index.html @@ -0,0 +1,128 @@ +--- +title: DOMPointReadOnly +slug: Web/API/DOMPointReadOnly +tags: + - API + - DOM + - Géométrie + - Interface + - Quadrilatère +translation_of: Web/API/DOMPointReadOnly +--- +<p>{{APIRef("Geometry Interfaces")}}{{ SeeCompatTable() }}</p> + +<p>L'interface <strong><code>DOMPointReadOnly</code></strong> spécifie les propriétés standard utilisées par {{domxref("DOMPoint")}} pour définir un point 2D ou 3D dans un système de coordonnées.</p> + +<h2 id="Constructeur">Constructeur</h2> + +<dl> + <dt>{{domxref("DOMPointReadOnly.DOMPointReadOnly","DOMPointReadOnly()")}}</dt> + <dd>Défini pour créer un nouvel objet <code>DOMPointReadOnly</code>, mais notez que ce constructeur ne peut pas être appelé par un JavaScript tiers : ce faisant, il retourne un typeError "constructeur illégal" .</dd> +</dl> + +<h2 id="Méthodes">Méthodes</h2> + +<dl> + <dt>{{domxref("DOMPointReadOnly.fromPoint")}}</dt> + <dd>Traduit la position / perspective d'un <code>DOMPoint</code> à une nouvelle position (ne semble pas encore être pris en charge).</dd> + <dt>{{domxref("DOMPointReadOnly.matrixTransform")}}</dt> + <dd>Applique une transformation matricielle à un objet <code>DOMPointReadOnly</code> (ne semble pas encore être pris en charge).</dd> + <dt>{{domxref("DOMPointReadOnly.toJSON()")}}</dt> + <dd>Renvoie une représentation JSON de l'objet <code>DOMPointReadOnly</code>.</dd> +</dl> + +<h2 id="Propriétés">Propriétés</h2> + +<dl> + <dt>{{domxref("DOMPointReadOnly.x")}} {{readonlyInline}}</dt> + <dd>La coordonnée x du <code>DOMPoint</code>.</dd> + <dt>{{domxref("DOMPointReadOnly.y")}} {{readonlyInline}}</dt> + <dd>La coordonnée y du <code>DOMPoint</code>.</dd> + <dt>{{domxref("DOMPointReadOnly.z")}} {{readonlyInline}}</dt> + <dd>La coordonnée z du <code>DOMPoint</code>.</dd> + <dt>{{domxref("DOMPointReadOnly.w")}} {{readonlyInline}}</dt> + <dd>La valeur de perspective du <code>DOMPoint</code>.</dd> +</dl> + +<h2 id="Specification" name="Specification">Spécifications</h2> + +<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('Geometry Interfaces', '#DOMPoint', 'DOMPoint')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatNo}}<br> + <br> + </td> + <td>{{CompatVersionUnknown}}<br> + </td> + <td>{{ CompatNo }}</td> + <td> + <p>{{ CompatNo }}</p> + </td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>Firefox OS (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + <th>Chrome for Android</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> + <li>{{domxref("DOMRect")}}</li> +</ul> diff --git a/files/fr/web/api/dompointreadonly/w/index.html b/files/fr/web/api/dompointreadonly/w/index.html new file mode 100644 index 0000000000..f05367c9d9 --- /dev/null +++ b/files/fr/web/api/dompointreadonly/w/index.html @@ -0,0 +1,106 @@ +--- +title: DOMPoint.w +slug: Web/API/DOMPointReadOnly/w +tags: + - API + - Coordonnées + - DOM + - Géométrie + - Propriétés + - Quadrilatère + - W +translation_of: Web/API/DOMPointReadOnly/w +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p>La propriété en lecture seule <code><strong>w</strong></code> de l'interface <strong><code>DOMPointReadOnly</code></strong> représente la perspective d'un point.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var perspective = DOMPoint.w;</pre> + +<h3 id="Specification" name="Specification">Valeur</h3> + +<p>Un double.</p> + +<h2 id="Specification" name="Specification">Spécifications</h2> + +<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('Geometry Interfaces', '#dom-dompointreadonly-w', 'w')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatNo}}<br> + <br> + </td> + <td>{{CompatVersionUnknown}}<br> + </td> + <td>{{ CompatNo }}</td> + <td> + <p>{{ CompatNo }}</p> + </td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>Firefox OS (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + <th>Chrome for Android</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> +</ul> diff --git a/files/fr/web/api/dompointreadonly/x/index.html b/files/fr/web/api/dompointreadonly/x/index.html new file mode 100644 index 0000000000..c8ca31f4bf --- /dev/null +++ b/files/fr/web/api/dompointreadonly/x/index.html @@ -0,0 +1,108 @@ +--- +title: DOMPoint.x +slug: Web/API/DOMPointReadOnly/x +tags: + - API + - Coordonnées + - DOM + - Géométrie + - Propriétés + - Quadrilatère + - x +translation_of: Web/API/DOMPointReadOnly/x +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p>La propriété en lecture seule <code><strong>x</strong></code> de l'interface <strong><code>DOMPointReadOnly</code></strong> représente la coordonnée x d'un point.</p> + +<p>En général, x positif signifie à droite et négatif à gauche (par rapport à l'origine).</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var xPos = DOMPoint.x;</pre> + +<h3 id="Specification" name="Specification">Valeur</h3> + +<p>Un double.</p> + +<h2 id="Specification" name="Specification">Spécifications</h2> + +<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('Geometry Interfaces', '#dom-dompointreadonly-x', 'x')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatNo}}<br> + <br> + </td> + <td>{{CompatVersionUnknown}}<br> + </td> + <td>{{ CompatNo }}</td> + <td> + <p>{{ CompatNo }}</p> + </td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>Firefox OS (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + <th>Chrome for Android</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> +</ul> diff --git a/files/fr/web/api/dompointreadonly/y/index.html b/files/fr/web/api/dompointreadonly/y/index.html new file mode 100644 index 0000000000..60c98fd793 --- /dev/null +++ b/files/fr/web/api/dompointreadonly/y/index.html @@ -0,0 +1,108 @@ +--- +title: DOMPoint.y +slug: Web/API/DOMPointReadOnly/y +tags: + - API + - Coordonnées + - DOM + - Géométrie + - Propriétés + - Quadrilatère + - 'y' +translation_of: Web/API/DOMPointReadOnly/y +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p>La propriété en lecture seule <code><strong>y</strong></code> de l'interface <strong><code>DOMPointReadOnly</code></strong> représente la coordonnée y d'un point.</p> + +<p>En général, y positif signifie en haut et négatif en bas (par rapport à l'origine).</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var yPos = DOMPoint.y;</pre> + +<h3 id="Specification" name="Specification">Valeur</h3> + +<p>Un double.</p> + +<h2 id="Specification" name="Specification">Spécifications</h2> + +<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('Geometry Interfaces', '#dom-dompointreadonly-y', 'y')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatNo}}<br> + <br> + </td> + <td>{{CompatVersionUnknown}}<br> + </td> + <td>{{ CompatNo }}</td> + <td> + <p>{{ CompatNo }}</p> + </td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>Firefox OS (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + <th>Chrome for Android</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> +</ul> diff --git a/files/fr/web/api/dompointreadonly/z/index.html b/files/fr/web/api/dompointreadonly/z/index.html new file mode 100644 index 0000000000..d8e6fc96bf --- /dev/null +++ b/files/fr/web/api/dompointreadonly/z/index.html @@ -0,0 +1,109 @@ +--- +title: DOMPoint.z +slug: Web/API/DOMPointReadOnly/z +tags: + - API + - Coordonnées + - DOM + - Géométrie + - Point + - Propriétés + - Quadrilatère + - z +translation_of: Web/API/DOMPointReadOnly/z +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p>La propriété en lecture seule <code><strong>z</strong></code> de l'interface <strong><code>DOMPointReadOnly</code></strong> représente la coordonnée z d'un point.</p> + +<p>En général, z positif signifie vers l'extérieur de l'écran (autrement dit, opposée à la direction de l'utilisateur) et négatif vers l'intérieur de l'écran (dans la même direction que l'utilisateur).</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var zPos = DOMPoint.z;</pre> + +<h3 id="Specification" name="Specification">Valeur</h3> + +<p>Un double.</p> + +<h2 id="Specification" name="Specification">Spécifications</h2> + +<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('Geometry Interfaces', '#dom-dompointreadonly-z', 'z')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatNo}}<br> + <br> + </td> + <td>{{CompatVersionUnknown}}<br> + </td> + <td>{{ CompatNo }}</td> + <td> + <p>{{ CompatNo }}</p> + </td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>Firefox OS (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + <th>Chrome for Android</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> +</ul> |