举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > 微信小程序 绘 微信小程序API 绘createLinearGradient(创建线性渐变)

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

2023-05-16 10:20

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

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

微信小程序 绘

微信小程序 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接口和方法绘图接口和方法

阅读全文
以上是名动网为你收集整理的微信小程序 绘 微信小程序API 绘createLinearGradient(创建线性渐变)全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 名动网 mdwl.vip 版权所有 联系我们