例
首先,畫一個紅色矩形,然後設置透明度(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 | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
所述globalAlpha的屬性設置或返回附圖的當前α或透明度值。
所述globalAlpha的屬性值必須在0.0(完全透明)和1.0的數(no transparancy)
默認值: | 1.0 |
---|---|
JavaScript語法: | context .globalAlpha= number ; |
屬性值
值 | 描述 | 播放 |
---|---|---|
number | 透明度值。 必須是0.0(完全透明)和1.0之間的數(no transparancy) | 播放 ” |
<畫布對象