HTML canvas shadowBlur 属性
Canvas 对象的 shadowBlur 属性设置或返回阴影的模糊级数
默认值
10
语法
context.shadowBlur = number
属性值
值 | 描述 |
---|---|
number | 阴影的模糊级数 |
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 shadowBlur 属性
Internet Explorer 8 及之前的版本不支持 <canvas> 元素
范例
绘制一个带有黑色阴影的红色矩形,模糊级数是 20
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);