例
首先,画一个红色矩形,然后设置透明度(globalAlpha的)到0.5,然后再画一个蓝色和绿色的矩形:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
// Turn transparency on
ctx.globalAlpha=0.2;
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);
ctx.fillStyle="green";
ctx.fillRect(80,80,75,50);
试一试» 浏览器支持
在表中的数字规定,完全支持该属性的第一个浏览器版本。
globalAlpha的 | |||||
---|---|---|---|---|---|
font | 是 | 9 | 是 | 是 | 是 |
定义和用法
该globalAlpha的属性设置或返回绘图的当前alpha或透明度值。
该globalAlpha的属性值必须是之间的数字0.0 (完全透明)和1.0 (无transparancy)。
默认值: | 1.0 |
---|---|
JavaScript语法: | context.globalAlpha=number; |
属性值
值 | 描述 | 播放 |
---|---|---|
number | 透明度值。 必须之间的数字0.0 (完全透明)和1.0 (无transparancy) | 播放 ” |