I'm playing around with createRadialGradient()
on HTML5 canvas. It works like a charm, except when I'm trying to implement (semi-)transparency.
I made this jsFiddle to make things hopefully clearer: http://jsfiddle.net/rfLf6/1/.
function circle(x, y, r, c) {
ctx.beginPath();
var rad = ctx.createRadialGradient(x, y, 1, x, y, r);
rad.addColorStop(0, c);
rad.addColorStop(1, 'transparent');
ctx.fillStyle = rad;
ctx.arc(x, y, r, 0, Math.PI*2, false);
ctx.fill();
}
ctx.fillRect(0, 0, 256, 256);
circle(128, 128, 200, 'red');
circle(64, 64, 30, 'green');
What is happening is a circle (radial gradient) is painted at (x, y)
with radius r
and the color stops are r
and 'transparent'
. However, the green circle is going from green to black, whilst it should go to transparent, i.e. the appropriate red colors of the background circle.
How does one implement transparent radial gradients on HTML5 canvas?