rotateY()
CSS
function
defines a transformation that rotates an element around the ordinate (vertical axis) without deforming it. Its result is a
<transform-function>
data type.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
The axis of rotation passes through an origin, defined by the
transform-origin
CSS property.
注意:
rotateY(a)
相当于
rotate3d
(0, 1, 0, a)
.
The amount of rotation created by
rotateY()
is specified by an
<angle>
. If positive, the movement will be clockwise; if negative, it will be counter-clockwise.
rotateY(a)
a
<angle>
representing the angle of the rotation. A positive angle denotes a clockwise rotation, a negative angle a counter-clockwise one.
| Cartesian coordinates on ℝ 2 | Homogeneous coordinates on ℝℙ 2 | Cartesian coordinates on ℝ 3 | Homogeneous coordinates on ℝℙ 3 |
|---|---|---|---|
| This transformation applies to the 3D space and can't be represented on the plane. | |||
<div>Normal</div> <div class="rotated">Rotated</div>
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.rotated {
transform: rotateY(60deg);
background-color: pink;
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Transforms Level 2
The definition of 'rotateY()' in that specification. |
编者草案 | 初始定义 |
Please see the
<transform-function>
data type for compatibility info.