微信小程序API繪圖createLinearGradient,創(chuàng)建微信小程序線性漸變
2017-12-22
導(dǎo)讀:繪圖接口和方法 canvasContext.createLinearGradient 定義 創(chuàng)建一個線性的漸變顏色。 Tip : 需要使用 addColorStop() 來指定漸變點,至少要兩個。 參數(shù) 參數(shù) 類型 定義 x0 Number 起點的x坐標 y0 Number 起...
canvasContext.createLinearGradient
定義
創(chuàng)建一個線性的漸變顏色。
Tip: 需要使用addColorStop()
來指定漸變點,至少要兩個。
參數(shù)
參數(shù) | 類型 | 定義 |
---|---|---|
x0 | Number | 起點的x坐標 |
y0 | Number | 起點的y坐標 |
x1 | Number | 終點的x坐標 |
y1 | Number | 終點的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()
更多微信小程序開發(fā)教程,可以關(guān)注hi小程序。
第二部分:如何開通一個小商店