注冊

微信小程序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小程序。
重磅推薦:小程序開店目錄

第一部分:小商店是什么

第二部分:如何開通一個小商店

第三部分:如何登錄小商店

第四部分:開店任務(wù)常見問題

第五部分:小商店可以賣什么

第六部分:HiShop小程序特色功能

第七部分:小程序直播

第八部分:小程序收貨/物流

第九部分:小程序怎么結(jié)算

第十部分:小程序客服

第十一部分:電商創(chuàng)業(yè)

第十二部分:小程序游戲開發(fā)