微信小程式API 繪圖中使用setGlobalAlpha設定全域畫筆透明度


setGlobalAlpha


定義

#設定全域畫筆透明度。

參數

QQ截图20170208145923.png

範例

const ctx = wx.createCanvasContext('myCanvas')

ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 100)
ctx.setGlobalAlpha(0.2)
ctx.setFillStyle('blue')
ctx.fillRect(50, 50, 150, 100)
ctx.setFillStyle('yellow')
ctx.fillRect(100, 100, 150, 100)

ctx.draw()

201612261806246869.png