scaleX()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
scaleX()
は CSS の関数で、要素を X 軸に沿って (水平に) 変倍する座標変換を定義します。結果は <transform-function>
データ型になります。
試してみましょう
これは要素のそれぞれの点の横座標(水平座標、 X 座標)を一定の係数で修正しますが、係数が 1 である場合はこの関数が恒等変換になるので例外です。変倍は等方性ではなく、要素の角度は保存されません。 scaleX(-1)
は軸の線対称を定義し、垂直軸は (transform-origin
プロパティの指定通りに) 原点を通過します。
メモ: scaleX(sx)
は scale(sx, 1)
または scale3d(sx, 1, 1)
と等価です。
構文
css
scaleX(s)
値
例
HTML
html
<div>Normal</div>
<div class="scaled">Scaled</div>
CSS
css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.scaled {
transform: scaleX(0.6);
background-color: pink;
}
結果
仕様書
Specification |
---|
CSS Transforms Module Level 1 # funcdef-transform-scalex |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
scaleY()
scaleZ()
transform
scale
<transform-function>
transform-origin
- 他の独立した座標変換プロパティ: