blob: f55fd09771445278a16d4850190ca91b6df3e021 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
---
title: scaleX()
slug: Web/CSS/transform-function/scaleX()
translation_of: Web/CSS/transform-function/scaleX()
browser-compat: css.types.transform-function.scaleX
---
{{CSSRef}}
La fonction **`scaleX()`** permet de modifier l'abscisse de chaque sommet de l'élément par un facteur multiplicateur. L'homothétie obtenue n'est pas isotropique et les angles de l'élément ne sont pas conservés.
![](scalex.png)
`scaleX(sx)` est une notation raccourcie équivalente à `scale(sx, 1)` ou à `scale3d(sx, 1, 1)`.
`scaleX(-1)` définit une symétrie axiale par rapport à un axe vertical passant par l'origine du repère (définie grâce à la propriété [`transform-origin`](/fr/docs/Web/CSS/transform-origin)).
## Syntaxe
```css
scaleX(s)
```
### Valeurs
- `s`
- : Une valeur de type [`<number>`](/fr/docs/Web/CSS/number) qui représente le facteur d'échelle de l'homothétie.
<table class="standard-table">
<thead>
<tr>
<th scope="col">Coordonnées cartésiennes sur ℝ<sup>2</sup></th>
<th scope="col">Coordonnées homogènes sur ℝℙ<sup>2</sup></th>
<th scope="col">Coordonnées cartésiennes sur ℝ<sup>3</sup></th>
<th scope="col">Coordonnées homogènes sur ℝℙ<sup>3</sup></th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="1" rowspan="2">
<math
><mfenced
><mtable
><mtr><mtd>s</mtd><mtd>0</mtd></mtr>
<mtr><mtd>0</mtd><mtd>1</mtd></mtr></mtable
></mfenced
></math
>
</td>
<td>
<math
><mfenced
><mtable
><mtr>s<mtd>0</mtd><mtd>0</mtd></mtr
><mtr>0<mtd>1</mtd><mtd>0</mtd></mtr
><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr></mtable
></mfenced
></math
>
</td>
<td colspan="1" rowspan="2">
<math
><mfenced
><mtable
><mtr>s<mtd>0</mtd><mtd>0</mtd></mtr
><mtr>0<mtd>1</mtd><mtd>0</mtd></mtr
><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr></mtable
></mfenced
></math
>
</td>
<td colspan="1" rowspan="2">
<math
><mfenced
><mtable
><mtr>s<mtd>0</mtd><mtd>0</mtd><mtd>0</mtd></mtr
><mtr>0<mtd>1</mtd><mtd>0</mtd><mtd>0</mtd></mtr
><mtr><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd><mtd>0</mtd></mtr
><mtr
><mtd>0</mtd><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr
></mtable
></mfenced
></math
>
</td>
</tr>
<tr>
<td><code>[s 0 0 1 0 0]</code></td>
</tr>
</tbody>
</table>
## Exemples
### Origine inchangée
#### HTML
```html
<div>Normal</div>
<div class="scaled">Mis à l'échelle</div>
```
#### CSS
```css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.scaled {
transform: scaleX(0.6);
background-color: pink;
}
```
#### Résultat
{{EmbedLiveSample("Origine_inchangée","100%","200")}}
### Origine déplacée
#### HTML
```html
<div>Normal</div>
<div class="scaled">Mis à l'échelle</div>
```
#### CSS
```css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.scaled {
transform: scaleX(0.6);
transform-origin: left;
background-color: pink;
}
```
#### Résultat
{{EmbedLiveSample("Origine_déplacée","100%","200")}}
## Spécifications
{{Specifications}}
## Compatibilité des navigateurs
{{Compat}}
## Voir aussi
- [`scaleY()`](/fr/docs/Web/CSS/transform-function/scaleY())
- [`scaleZ()`](/fr/docs/Web/CSS/transform-function/scaleZ())
- [`transform`](/fr/docs/Web/CSS/transform)
- [`<transform-function>`](/fr/docs/Web/CSS/transform-function)
- [`transform-origin`](/fr/docs/Web/CSS/transform-origin)
|