HTML canvas shadowOffsetY 屬性
實例
繪制一個矩形,帶有向下偏移 20 像素的陰影(從矩形的 top 位置):
JavaScript:
var c=document.getElementById("myCanvas");
varctx=c.getContext("2d");
ctx.shadowBlur=10;
ctx.shadowOffsetY=20;
ctx.shadowColor="black";
ctx.fillStyle="red";
ctx.fillRect(20,20,100,80);
varctx=c.getContext("2d");
ctx.shadowBlur=10;
ctx.shadowOffsetY=20;
ctx.shadowColor="black";
ctx.fillStyle="red";
ctx.fillRect(20,20,100,80);
嘗試一下 ?
瀏覽器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 shadowOffsetY 屬性。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
shadowOffsetY 屬性設(shè)置或返回陰影與形狀的垂直距離。
shadowOffsety=0 指示陰影位于形狀的正下方。
shadowOffsetY=20 指示陰影位于形狀 top 位置下方的 20 像素處。
shadowOffsetY=-20 指示陰影位于形狀 top 位置上方的 20 像素處。
提示:如需調(diào)整陰影與形狀的水平距離,請使用 shadowOffsetX 屬性。
默認(rèn)值: | 0 |
---|---|
JavaScript 語法: | context.shadowOffsetY=number; |
屬性值
值 | 描述 |
---|---|
number | 正值或負(fù)值,定義陰影與形狀的垂直距離。 |
更多建議: