如何在 webkit 浏览器中绘制黑色阴影?

发布于 2024-11-01 07:22:18 字数 40 浏览 0 评论 0原文

如何使用 HTML5 画布在 webkit 浏览器中绘制黑色阴影?

How can I draw a BLACK shadow in webkit browsers with the HTML5 canvas?

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

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

发布评论

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

评论(3

亣腦蒛氧 2024-11-08 07:22:18

我发现问题了!当模糊未设置或设置为零时,Webkit 不知道如何处理阴影。在这种情况下,它显示与文本颜色相同的阴影。 Firefox 在这两种情况下都能正确显示(模糊未设置或模糊等于零)。

I found the problem! Webkit does not how to process shadow when blur is not set or set to zero. In this case it shows shadow in the same color as the text. Firefox shows it correctly in both case (blur not set or blur equal zero).

不乱于心 2024-11-08 07:22:18

在画布上?

它应该与任何其他浏览器相同:

ctx.shadowColor = "rgba(0, 0, 0, 1)";

请参阅此处的示例:

http://jsfiddle.net/LpvFF/4 /

在 Safari 5 和 Chrome 12 上测试

On Canvas?

It should be the same as any other browser:

ctx.shadowColor = "rgba(0, 0, 0, 1)";

See an example here:

http://jsfiddle.net/LpvFF/4/

Tested on Safari 5 and Chrome 12

终遇你 2024-11-08 07:22:18

shadowColor = "rgb(255,100,100)";

请参阅此处的示例。

shadowColor = "rgb(255,100,100)";

See an example here.

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