例
繪製一個矩形用陰影放置20個像素向右(from the rectangle's left position) :
JavaScript的:
var c=document.getElementById("myCanvas");
var
ctx=c.getContext("2d");
ctx.shadowBlur=10;
ctx.shadowOffsetX=20;
ctx.shadowColor="black";
ctx.fillStyle="red";
ctx.fillRect(20,20,100,80);
試一試» 瀏覽器支持
在表中的數字規定,完全支持該財產瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
shadowOffsetX | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
所述shadowOffsetX屬性設置或返回從形狀陰影的水平距離。
shadowOffsetX = 0表示的陰影是正後方的形狀。
shadowOffsetX = 20表示的陰影開始20個像素向右(from the shape's left position) 。
shadowOffsetX = -20指示影子開始20個像素向左(from the shape's left position) 。
Tip:為了從形狀調整陰影的垂直距離,使用shadowOffsetY屬性。
默認值: | 0 |
---|---|
JavaScript語法: | context .shadowOffsetX= number ; |
屬性值
值 | 描述 | 播放 |
---|---|---|
number | 甲正數或負數,其限定從形狀陰影的水平距離 | 播放 ” |
<畫布對象