微信小程序API 绘图createLinearGradient(创建线性渐变)

2022-05-09 16:36 更新

微信小程序 canvas接口和方法绘图接口和方法


canvasContext.createLinearGradient


定义

创建一个线性的渐变颜色。

Tip: 需要使用addColorStop()来指定渐变点,至少要两个。

参数

参数类型定义
x0Number起点的x坐标
y0Number起点的y坐标
x1Number终点的x坐标
y1Number终点的y坐标

例子

const ctx = wx.createCanvasContext('myCanvas')

// Create linear gradient
const grd = ctx.createLinearGradient(0, 0, 200, 0)
grd.addColorStop(0, 'red')
grd.addColorStop(1, 'white')

// Fill with gradient
ctx.setFillStyle(grd)
ctx.fillRect(10, 10, 150, 80)
ctx.draw()


微信小程序 canvas接口和方法绘图接口和方法

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号