HTML DOM translate() 方法
定义和用法
translate() 方法转换画布的用户坐标系统。
语法
translate(dx, dy)
参数
参数 | 描述 |
---|---|
dx, dy | 转换的量的 X 和 Y 大小。 |
描述
translate() 方法为画布的变换矩阵添加水平的和垂直的偏移。参数 dx 和 dy 添加给后续定义路径中的所有点。
translate() 方法转换画布的用户坐标系统。
translate(dx, dy)
参数 | 描述 |
---|---|
dx, dy | 转换的量的 X 和 Y 大小。 |
translate() 方法为画布的变换矩阵添加水平的和垂直的偏移。参数 dx 和 dy 添加给后续定义路径中的所有点。