blob: 60559d3d040f33b20f360acfeaa21d4764af462c (
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
|
---
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
---
{{APIRef("DOM")}}{{ SeeCompatTable() }}
La propriété en lecture seule **`y`** de l'interface **`DOMPointReadOnly`** représente la coordonnée y d'un point.
En général, y positif signifie en haut et négatif en bas (par rapport à l'origine).
## Syntaxe
```js
var yPos = DOMPoint.y;
```
### Valeur
Un double.
## Spécifications
| Spécification | Statut | Commentaire |
| ---------------------------------------------------------------------------------------- | -------------------------------------------- | -------------------------------------------------- |
| {{SpecName('Geometry Interfaces', '#dom-dompointreadonly-y', 'y')}} | {{Spec2('Geometry Interfaces')}} | La dernière version de la spécification est un ED. |
## Compatibilité des navigateurs
{{Compat("api.DOMPointReadOnly.y")}}
## Voir aussi
- {{domxref("DOMPoint")}}
|