> 微信小程序开发教程手册 > 微信小程序API 绘图·translate
微信小程序API 绘图·translate绘图接口和方法

translate


定义

对当前坐标系的原点(0, 0)进行变换,默认的坐标系原点为页面左上角。

参数

参数 类型 说明
x Number 水平坐标平移量
y Number 竖直坐标平移量

例子

const ctx = wx.createCanvasContext('myCanvas')

ctx.strokeRect(10, 10, 150, 100)
ctx.translate(20, 20)
ctx.strokeRect(10, 10, 150, 100)
ctx.translate(20, 20)
ctx.strokeRect(10, 10, 150, 100)

ctx.draw()

微信小程序API 绘图·translate

微信小程序API 绘图·translate绘图接口和方法