绘图接口和方法
canvasContext.createLinearGradient
定义创建一个线性的渐变颜色。 Tip: 需要使用addColorStop() 来指定渐变点,至少要两个。 参数参数 | 类型 | 定义 |
---|
x0 | Number | 起点的x坐标 | y0 | Number | 起点的y坐标 | x1 | Number | 终点的x坐标 | y1 | Number | 终点的y坐标 |
例子const ctx = wx.createCanvasContext('myCanvas')
const grd = ctx.createLinearGradient(0, 0, 200, 0)
grd.addColorStop(0, 'red')
grd.addColorStop(1, 'white')
ctx.setFillStyle(grd)
ctx.fillRect(10, 10, 150, 80)
ctx.draw()
绘图接口和方法
|
请发表评论