HTML canvas shadowBlur 屬性
實(shí)例
繪制一個(gè)帶有黑色陰影的紅色矩形,模糊級(jí)數(shù)是 20:
JavaScript:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.shadowBlur=20;
ctx.shadowColor="black";
ctx.fillStyle="red";
ctx.fillRect(20,20,100,80);
var ctx=c.getContext("2d");
ctx.shadowBlur=20;
ctx.shadowColor="black";
ctx.fillStyle="red";
ctx.fillRect(20,20,100,80);
嘗試一下 ?
瀏覽器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 shadowBlur 屬性。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
shadowBlur 屬性設(shè)置或返回陰影的模糊級(jí)數(shù)。
默認(rèn)值: | 0 |
---|---|
JavaScript 語法: | context.shadowBlur=number; |
屬性值
值 | 描述 |
---|---|
number | 陰影的模糊級(jí)數(shù) |
更多建議: