shadowBlur属性用于设置阴影的模糊级别。默认值为0。 <canvas>元素允许您使用JavaScript在网页上绘制图形。
绘制一个带有黑色阴影的绿色以及蓝色阴影的黄色矩形,模糊级数是 20:
现在让我们看一个示例来实现canvas的shadowBlur属性:
<!DOCTYPE html> <html> <head> <title>HTML canvas shadowBlur 属性的使用(编程教程网(123520.net))</title> </head> <body> <canvas id="newCanvas" width="450" height="250" style="border:1px solid #d3d3d3;"> 您的浏览器不支持 HTML5 canvas 标签 </canvas> <script> var c = document.getElementById("newCanvas"); var ctx = c.getContext("2d"); ctx.shadowBlur = 20; ctx.shadowColor = "black"; ctx.fillStyle = "green"; ctx.fillRect(4, 4, 100, 150); ctx.shadowBlur = 30; ctx.shadowColor = "blue"; ctx.fillStyle = "orange"; ctx.fillRect(200, 40, 200, 150); </script </body> </html>测试看看 ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 shadowBlur 属性。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
shadowBlur 属性设置或返回阴影的模糊级数。
默认值: | 0 |
---|---|
JavaScript 语法: | context.shadowBlur=number; |
值 | 描述 |
---|---|
number | 阴影的模糊级数 |