在 svg/vml 或画布形状周围放置阴影
在使用 svg(兼容 IE7/8 的 vml)创建的形状下或在使用 html5 的画布创建的形状下创建阴影是否容易?我正在寻找创建一个带有阴影的箭头。
Is it easy to create drop shadows under shapes created with svg (vml for IE7/8 compatibility) or under shapes created with html5's canvas? I'm looking to create an arrow with a drop shadow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个 svg 示例,展示了如何获取投影:
重要的部分是:
定义(svg 过滤器 可以做更多事情不仅仅是 dropshadows)url(#id)
语法过滤器引用它,如上例所示Here's an svg example showing how to get a dropshadow:
The important bits are:
<filter>
definition (svg filters can do a lot more than just dropshadows)url(#id)
syntax filter via the CSS 'filter' property, or presentation attribute as in the example above