WeChat アプレット開発ドキュメント
/ 微信小程序API 绘图rect创建矩形
微信小程序API 绘图rect创建矩形
rect
定义
创建一个矩形。
Tip: 用 fill()
或者 stroke()
方法将矩形真正的画到 canvas 中。
参数
例子
const ctx = wx.createCanvasContext('myCanvas') ctx.rect(10, 10, 150, 75) ctx.setFillStyle('red') ctx.fill() ctx.draw()