CSS translate()
函数用于在二维空间中移动一个元素。
translate()
函数的语法如下:
transform: translate( tx [, ty ]? );
translate()
函数用于在水平或垂直方向上移动元素。它用向量[tx, ty]完成2D平移。如果ty没有指定,它的值默认为0。tx和ty使用<length>或<percentage>值。
正数值表示元素沿相应轴的正方向移动,负数值表示元素沿相应轴的负方向移动。
下面是一些示例代码:
transform: translate(100px); transform: translate(-100px); transform: translate(50px, 300px); transform: translate(50%, 10%); transform: translate(-100%); transform: translate(100px, 100px);
浏览器支持
CSS3 2D Transform的浏览器兼容性列表如下: