如何在 webkit 浏览器中绘制黑色阴影?
如何使用 HTML5 画布在 webkit 浏览器中绘制黑色阴影?
How can I draw a BLACK shadow in webkit browsers with the HTML5 canvas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 HTML5 画布在 webkit 浏览器中绘制黑色阴影?
How can I draw a BLACK shadow in webkit browsers with the HTML5 canvas?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我发现问题了!当模糊未设置或设置为零时,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).
在画布上?
它应该与任何其他浏览器相同:
请参阅此处的示例:
http://jsfiddle.net/LpvFF/4 /
在 Safari 5 和 Chrome 12 上测试
On Canvas?
It should be the same as any other browser:
See an example here:
http://jsfiddle.net/LpvFF/4/
Tested on Safari 5 and Chrome 12
shadowColor = "rgb(255,100,100)";
请参阅此处的示例。
shadowColor = "rgb(255,100,100)";
See an example here.