微信小程式API 繪圖createLinearGradient(建立線性漸層)


createLinearGradient


定義

建立一個線性的漸層顏色。

Tip: 需要使用 addColorStop() 來指定漸層點,至少要兩個。

參數

QQ截图20170208135732.png

範例

const ctx = wx.createCanvasContext('myCanvas')// Create linear gradientconst grd = ctx.createLinearGradient(0, 0, 200, 0)
grd.addColorStop(0, 'red')
grd.addColorStop(1, 'white')// Fill with gradientctx.setFillStyle(grd)
ctx.fillRect(10, 10, 150, 80)
ctx.draw()

QQ截图20170208135744.png