HTML canvas fillStyle 屬性
實例1 - 定義用紅色填充的矩形:
JavaScript:
var ctx=c.getContext("2d");
ctx.fillStyle="#FF0000";
ctx.fillRect(20,20,150,100);
嘗試一下 ?
瀏覽器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 fillStyle 屬性。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
fillStyle 屬性設置或返回用于填充繪畫的顏色、漸變或模式。
默認值: | #000000 |
---|---|
JavaScript 語法: | context.fillStyle=color|gradient|pattern; |
屬性值
值 | 描述 |
---|---|
color | 指示繪圖填充色的 CSS 顏色值。默認值是 #000000。 |
gradient | 用于填充繪圖的漸變對象(線性 或 放射性)。 |
pattern | 用于填充繪圖的 pattern 對象。 |
更多實例
實例2 -定義從上到下的漸變
定義從上到下的漸變,作為矩形的填充樣式:
JavaScript:
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);
嘗試一下 ?
實例3 -定義從左到右的漸變
定義從左到右的漸變,作為矩形的填充樣式:
JavaScript:
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);
嘗試一下 ?
實例4 -定義從黑到紅再到白的漸變
定義從黑到紅再到白的漸變,作為矩形的填充樣式:
JavaScript:
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);
嘗試一下 ?
實例5 -使用圖像填充繪圖
用到的圖像:
url為:https://atts.w3cschool.cn/attachments/image/lamp.jpg
使用圖像來填充繪圖:
JavaScript:
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();
嘗試一下 ?
HTML canvas 參考手冊
更多建議: