我想在透明的SVG元素上有一个投影。
我尝试过使用所有不同类型的过滤器,但无济于事。 svg元素(filter: drop-shadow(0 -6mm 4mm rgb(160, 0, 210));
)上的css3过滤器,新的过滤器过滤器(<feDropShadow>
),旧过滤器:
<filter xmlns="http://www.w3.org/2000/svg" id="dropshadow" height="130%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
<feOffset dx="2" dy="2" result="offsetblur"/>
<feComponentTransfer>
<feFuncA type="linear" slope="0.2"/>
</feComponentTransfer>
<feMerge>
<feMergeNode/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
这可以使用css3 box-shadow Codepen来实现
我希望在透明元素上有一个投影,但实际的透明元素会在影子上面剪辑(所以元素本身是透明的,但有一个像外部发光的霓虹灯)
我希望能够控制:
任何帮助将不胜感激 :)
如果原件是完全透明的形状 - 由于原因 - 你无法做到这一点,但你可以从几乎完全透明的原始形状开始,最后得到一个完全透明的形状,由正常的阴影包围。
使用1%填充不透明度绘制形状。当你将它们拉入过滤器时,使用colormatrix将它们的alpha乘以100 - 并将其作为你的Drophadow的基础。在最终版本中,最终不会使用原始的1%不透明度形状,因为如果使用“out”运算符,则会丢弃与原始(已处理)形状重叠的任何内容。
svg {
background: #33D;
}
<svg width="500px" height="400px">
<defs>
<filter id="trans-shadow">
<feColorMatrix type="matrix" values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 100 0"
result="boostedInput"/>
<feGaussianBlur stdDeviation="5"/>
<feComposite operator="out" in2="boostedInput"/>
</filter>
</defs>
<circle filter="url(#trans-shadow)" x="100" y="100" r="050" cx="150" cy="150" fill="black" fill-opacity="0.01" />
</svg>
我假设这些形状并不总是阴影,所以你希望它们的非阴影版本尽可能透明。如果这些形状从未在没有阴影的情况下显示,那么您可以跳过一个步骤,最初只用黑色绘制这些形状,然后仍然使用“out”来丢弃它们。像这样:
svg {
background: #33D;
}
<svg width="500px" height="400px">
<defs>
<filter id="trans-shadow">
<feGaussianBlur stdDeviation="5"/>
<feComposite operator="out" in2="SourceGraphic"/>
</filter>
</defs>
<circle filter="url(#trans-shadow)" x="100" y="100" r="050" cx="150" cy="150" fill="black" />
</svg>
I made a codepen for you that may be helpfull我自己也玩过它,我想你可以用你想要的东西在这里工作。这是html:
<div id="background">
<div id="mybox">
<svg viewBox="0 0 142.71 92.903" enable-background="new 0 0 142.71 92.903" xml:space="preserve">
<path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M141.348,91.677H1.71v-90h139.638v58
c0,0,0,6.194,0,9S141.348,91.677,141.348,91.677z"/>
</svg>
</div>
</div>
和css:
#mybox{
position: absolute;
top: 20%;
left: 40%;
}
svg{
box-shadow: 0 0 341px 71px rgb(137, 105, 148, 0.8);
width: 80%;
cursor: move;
}
#background {
margin-left: 10%;
max-width: 100%;
height: 600px;
background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80');
background-repeat: no-repeat;