使用CSS 3的SVG丢弃阴影是否可以使用CSS 3为SVG元素设置拖放阴影,例如box-shadow: -5px -5px 5px #888;-webkit-box-shadow: -5px -5px 5px #888;我看到了一些关于使用过滤器效果创建阴影的注释。是否有单独使用CSS的例子。下面是正确应用缓冲样式的工作代码,但没有阴影效果。请帮助我得到阴影效果,至少一点代码。svg .shadow { cursor:crosshair; -moz-box-shadow: -5px -5px 5px #888; -webkit-box-shadow: -5px -5px 5px #888; box-shadow: -5px -5px 5px #888; } <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full" viewBox="0 0 120 70"> <rect class="shadow" x="10" y="10" width="100" height="50" fill="#c66" /></svg>
3 回答
慕田峪9158850
TA贡献1794条经验 获得超7个赞
slope
<filter id="dropshadow" height="130%"> <feGaussianBlur in="SourceAlpha" stdDeviation="3"/> <!-- stdDeviation is how much to blur --> <feOffset dx="2" dy="2" result="offsetblur"/> <!-- how much to offset --> <feComponentTransfer> <feFuncA type="linear" slope="0.5"/> <!-- slope is the opacity of the shadow --> </feComponentTransfer> <feMerge> <feMergeNode/> <!-- this contains the offset blurred image --> <feMergeNode in="SourceGraphic"/> <!-- this contains the element that the filter is applied to --> </feMerge></filter><circle r="10" style="filter:url(#dropshadow)"/>
- 3 回答
- 0 关注
- 1242 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消