canvasContext.setGlobalAlpha

解释:设置全局画笔透明度。

参数:

参数名类型范围说明
alphaNumber0~1透明度,0 表示完全透明,1 表示完全不透明。

示例:

  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();

图片