像 html5 canvas 中的内发光一样的效果吗?
有没有好方法向 html5 canvas 元素添加类似 Photoshop“内发光”效果的效果?我希望它没有像 jQuery 或 MooTools 这样的库,但如果有必要,我愿意看看它们。
Is there a good way to add an effect like the Photoshop "Inner Glow" effect to an html5 canvas element? I'd prefer it to be without libraries like jQuery or MooTools, but if it's necessary, I'm willing to take a look at them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用这个css3属性
box-shadow:inset 0 0 10px #000000;
这里最重要的属性是inset,它意味着内部阴影。您可以根据需要更改属性的其他属性。You can use this css3 property
box-shadow:inset 0 0 10px #000000;
The most important attribute here is inset which means inner shadows. You can change other property of attributes as you wish.