canvasContext.setGlobalAlpha
解释:设置全局画笔透明度。
参数:
参数名 | 类型 | 范围 | 说明 |
---|---|---|---|
alpha | Number | 0~1 | 透明度,0 表示完全透明,1 表示完全不透明。 |
示例:
- const ctx = swan.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();