# CanvasContext.setGlobalAlpha(number alpha)

设置全局画笔透明度。

# 参数

# number alpha

透明度。范围 0-1,0 表示完全透明,1 表示完全不透明。

# 示例代码

const ctx = qa.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()
1
2
3
4
5
6
7
8
9
10
11

在线客服