微信小程序API 繪圖createCircularGradient(創(chuàng)建圓形漸變)

2022-05-09 16:36 更新

微信小程序 canvas接口和方法繪圖接口和方法


canvasContext.createCircularGradient


定義

創(chuàng)建一個(gè)圓形的漸變顏色。

Tip: 起點(diǎn)在圓心,終點(diǎn)在圓環(huán)。

Tip: 需要使用addColorStop()來指定漸變點(diǎn),至少要兩個(gè)。

參數(shù)

參數(shù)類型定義
xNumber圓心的x坐標(biāo)
yNumber圓心的y坐標(biāo)
rNumber圓的半徑

例子

const ctx = wx.createCanvasContext('myCanvas')

// Create circular gradient
const grd = ctx.createCircularGradient(75, 50, 50)
grd.addColorStop(0, 'red')
grd.addColorStop(1, 'white')

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


微信小程序 canvas接口和方法繪圖接口和方法

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號