translate() - CSS(层叠样式表) 编辑
translate()
这个 CSS 函数在水平和/或垂直方向上重新定位元素。 其结果是 <transform-function>
类型。
该变换由二维向量构成。 它的坐标定义了元素在每个方向上移动了多少。
语法
/* Single <length-percentage> values */
transform: translate(200px);
transform: translate(50%);
/* Double <length-percentage> values */
transform: translate(100px, 200px);
transform: translate(100px, 50%);
transform: translate(30%, 200px);
transform: translate(30%, 50%);
值
- 单个
<length-percentage>
作为参数 - 该值是
<length>
或者<percentage>
代表翻译向量的横坐标 (horizontal, x-coordinate) . 而向量的纵坐标 (vertical, y-coordinate) 会被默认为0
. 例如,translate(2)
等价于translate(2, 0)
。 里面还可以填百分比值,百分比值是指transform-box
属性定义的参考框的宽度。 - 参数是两个
<length-percentage>
构成 - 此值描述两个
<length>
或<percentage>
值,分别代表翻译的横坐标 (x-coordinate) 和纵坐标 (y-coordinate) 向量。 百分比作为第一个值表示宽度,第二个部分表示由transform-box
属性定义的参考框的高度。
Cartesian coordinates on ℝ2 | Homogeneous coordinates on ℝℙ2 | Cartesian coordinates on ℝ3 | Homogeneous coordinates on ℝℙ3 |
---|---|---|---|
平移不是 ℝ2 中的线性变换,因此不能使用矩阵来表示。 | |||
[1 0 0 1 tx ty] |
形式语法
translate(<length-percentage>
,<length-percentage>
?)
例子
使用单个轴平移
HTML
<div>Static</div>
<div class="moved">Moved</div>
<div>Static</div>
CSS
div {
width: 60px;
height: 60px;
background-color: skyblue;
}
.moved {
transform: translate(10px); /* Equal to: translateX(10px) or translate(10px, 0) */
background-color: pink;
}
结果
y轴和x轴都平移
HTML
<div>Static</div>
<div class="moved">Moved</div>
<div>Static</div>
CSS
div {
width: 60px;
height: 60px;
background-color: skyblue;
}
.moved {
transform: translate(10px, 10px);
background-color: pink;
}
结果
规格
技术规格 | 状态 | 注解 |
---|---|---|
CSS Transforms Level 1 translate() | Working Draft | Initial definition |
浏览器兼容性
请参阅 <transform-function>
数据类型以获取兼容性信息。
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论