The translate()
CSS function moves the position of the element on the plane. This transformation is characterized by a vector whose coordinates define how much it moves in each direction.
translate(tx) or translate(tx, ty)
<length>
representing the abscissa of the translating vector.<length>
representing the ordinate of the translating vector. If unspecified, it will equal 0
: translate(2)
means translate(2, 0)
.Cartesian coordinates on ℝ2 | Homogeneous coordinates on ℝℙ2 | Cartesian coordinates on ℝ3 | Homogeneous coordinates on ℝℙ3 |
---|---|---|---|
A translation is not a linear transform in ℝ2 and cannot be represented using a matrix in the cartesian coordinates system. | |||
[1 0 0 1 tx ty] |
<p>foo</p> <p class="transformed">bar</p> <p>foo</p>
p { width: 50px; height: 50px; background-color: teal; } .transformed { transform: translate(10px); /* equivalent to translateX(10px)*/ background-color: blue; }
<p>foo</p> <p class="transformed">bar</p> <p>foo</p>
p { width: 50px; height: 50px; background-color: teal; } .transformed { transform: translate(10px,10px); background-color: blue; }
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate