例
畫一個紅色矩形與黑色的影子,有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);
試一試» 瀏覽器支持
在表中的數字規定,完全支持該財產瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
shadowBlur | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
該shadowBlur屬性設置或返回陰影模糊等級。
默認值: | 0 |
---|---|
JavaScript語法: | context .shadowBlur= number ; |
屬性值
值 | 描述 | 播放 |
---|---|---|
number | 模糊水平的陰影 | 播放 ” |
<畫布對象