W3Schools.com

HTML5 canvas shadowBlur Attribute

HTML5 track Tag Reference HTML5 canvas reference

Example

Draw a rectangle with a blurring shadow:

Yor browser does not support the canvas tag.

JavaScript:

<script type="text/javascript">
var canvas=document.getElementById("myCanvas");
var ctx=canvas.getContext("2d");
ctx.rect(20,20,100,80);
ctx.fillStyle="red";
ctx.shadowColor="black";
ctx.shadowBlur=30;
ctx.fill();
</script>

Try it yourself »

Definition and Usage

The shadowBlur attribute specifies the blurring effect of the shadow.

Default value: 0
JavaScript syntax: context.shadowBlur=10;


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The shadowBlur attribute is supported in all major browsers.


Attribute Values

Value Description Play it
size The size of the blurring effect of the shadow. Play it »


HTML5 track Tag Reference HTML5 canvas reference


WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE