你如何在纯CSS中实现这样的效果?
我很容易找到ressources创建一个淘汰文本效果,但这里的挑战是将经典的淘汰文本效果like this与内部文本阴影和透明度结合起来,让背景图像可见。
允许实验规则。 SVG也是,但我更喜欢CSS:)
答案 0 :(得分:2)
您可以使用rgba()
作为颜色并与text-shadow
配对来实现此目的。
<强> CSS 强>
color: rgba(255,0,0, 0.4);
text-shadow: 4px 4px 6px red, 0 0 0 #000, 4px 4px 6px red;
示例强>
html,body {
margin: 0;
padding: 0;
}
.container {
background-color: red;
width: 400px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
}
.container p {
font-weight: bold;
font-size: 60px;
font-family: Helvetica, Arial, sans-serif;
color: rgba(255,0,0, 0.4);
text-shadow: 4px 4px 6px red, 0 0 0 #000, 4px 4px 6px red;
}
<div class="container">
<p>Hello World</p>
</div>
答案 1 :(得分:2)
从 Hunter Turner 回答开始,可以使用CSS Blend Mode对其进行改进。这样,容器的背景图像可以混合到文本中,从而产生您想要做的事情。但请记住hasn't broad support yet。
html, body {
margin: 0;
padding: 0;
}
.container {
width: 400px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
background: url('http://www.designbolts.com/wp-content/uploads/2013/02/Free-Seamless-Wood-Textures-Patterns-For-3D-Mapping-2.jpg');
background-size: contain;
}
.container p {
font-weight: bold;
font-size: 60px;
font-family: Helvetica, Arial, sans-serif;
color: rgba(255, 255, 255, .45);
text-shadow: 4px 4px 6px #fff, 0 0 0 #000, 4px 4px 6px #fff;
mix-blend-mode: multiply;
}
<div class="container">
<p>Hello World</p>
</div>