例
定義一個紅色填充色為矩形:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="#FF0000";
ctx.fillRect(20,20,150,100);
試一試» 瀏覽器支持
在表中的數字規定,完全支持方法的第一個瀏覽器版本。
方法 | |||||
---|---|---|---|---|---|
fillStyle() | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
FillStyle屬性設置或返回的顏色,梯度,或圖案用來填充圖。
默認值: | #000000 |
---|---|
JavaScript語法: | context .fillStyle= color | gradient | pattern ; |
屬性值
值 | 描述 | 播放 |
---|---|---|
color | 一個CSS顏色值 ,指示圖的填充顏色。 默認值為#000000 | 播放 ” |
gradient | 梯度對象( 線性或徑向 )用於填充繪圖 | |
pattern | 甲圖案對象,以便填充該圖 |
更多示例
例
定義一個梯度(top to bottom)作為用於矩形的填充樣式:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var my_gradient=ctx.createLinearGradient(0,0,0,170);
my_gradient.addColorStop(0,"black");
my_gradient.addColorStop(1,"white");
ctx.fillStyle=my_gradient;
ctx.fillRect(20,20,150,100);
試一試» 例
定義一個梯度(left to right)為矩形的填充樣式:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var my_gradient=ctx.createLinearGradient(0,0,170,0);
my_gradient.addColorStop(0,"black");
my_gradient.addColorStop(1,"white");
ctx.fillStyle=my_gradient;
ctx.fillRect(20,20,150,100);
試一試» 例
定義一個漸變,從黑變,紅色,白色,為矩形的填充樣式:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var my_gradient=ctx.createLinearGradient(0,0,170,0);
my_gradient.addColorStop(0,"black");
my_gradient.addColorStop(0.5,"red");
my_gradient.addColorStop(1,"white");
ctx.fillStyle=my_gradient;
ctx.fillRect(20,20,150,100);
試一試» 圖片使用方法:
例
使用圖像填充繪圖:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var img=document.getElementById("lamp");
var
pat=ctx.createPattern(img,"repeat");
ctx.rect(0,0,150,100);
ctx.fillStyle=pat;
ctx.fill();
試一試»