createRadialGradient 和透明度

发布于 2024-10-30 07:57:59 字数 783 浏览 0 评论 0原文

我正在 HTML5 画布上使用 createRadialGradient() 。它就像一个魅力,除非我试图实现(半)透明。

我制作这个 jsFiddle 是为了让事情变得更清晰: 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');

发生的情况是在 (x, y) 处绘制一个圆(径向渐变),半径为 r,颜色停止点为 r 和 <代码>'透明'。然而,绿色圆圈从绿色变为黑色,同时它应该变为透明,即背景圆圈的适当红色。

如何在 HTML5 画布上实现透明径向渐变?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心小果奶 2024-11-06 07:57:59

好吧,既然你问了:

我不太了解如何在 JavaScript 中使用 ,但我确实了解 CSS3 渐变,并且处理透明度的常用方法是使用 rgba 颜色。

要使渐变“淡出”为透明,您可以添加相同颜色的透明版本。

这就是我在这里所做的: http://jsfiddle.net/thirtydot/BD3xA/

Well, since you asked:

I don't know much about using <canvas> with JavaScript, but I do know about CSS3 gradients, and the usual way to work with transparency is to use rgba colours.

To make the gradient "fade out" to transparent, you can add a transparent version of the same colour.

That's what I did here: http://jsfiddle.net/thirtydot/BD3xA/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文