translateY()
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.
translateY()
は CSS の関数で、要素を二次元平面上の垂直方向で再配置します。結果は <transform-function>
データ型になります。
試してみましょう
メモ: translateY(ty)
は translate(0, ty)
または translate3d(0, ty, 0)
と等価です。
構文
css
/* <length-percentage> 値 */
transform: translateY(200px);
transform: translateY(50%);
値
<length-percentage>
-
変換ベクトルの縦座標を表す
<length>
または<percentage>
です。直交座標系では Y 座標の移動量をを表します。パーセント値はtransform-box
プロパティで定義される参照ボックスの幅からの相対値です。
形式文法
css
translateY(<length-percentage>)
例
HTML
html
<div>Static</div>
<div class="moved">Moved</div>
<div>Static</div>
CSS
css
div {
width: 60px;
height: 60px;
background-color: skyblue;
}
.moved {
transform: translateY(10px);
background-color: pink;
}
結果
仕様書
Specification |
---|
CSS Transforms Module Level 1 # funcdef-transform-translatey |
ブラウザーの互換性
BCD tables only load in the browser