W3Schools.com

HTML5 canvas globalAlpha Attribute

HTML5 track Tag Reference HTML5 canvas reference

Example

Draw a red and a blue rectangle, where the blue rectangle is transparent:

Yor browser does not support the canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.fillStyle="blue";
ctx.globalAlpha=0.2;
ctx.fillRect(50,50,75,50);

Try it yourself »

Definition and Usage

The globalAlpha attribute specifies the transparency of the drawings.

The globalAlpha attribute value can be a number between 0 and 1.

0=full transparency, 1=no transparency.

Default value: 0
JavaScript syntax: context.globalAlpha=0.5;


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The globalAlpha attribute is supported in all major browsers.


Attribute Values

Value Description Play it
number Specifies the transparency. Must be a number between 0 and 1 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
XML Editor - Free Trial!
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