如何在该网站的开头创建半透明文本https://superscene.pro/ 我真的想知道如何使文本保持定义颜色并在后面有对象时变得半透明?也许有人可以提供有关如何在该网站上拖动对象的提示
问问题
59 次
3 回答
0
通过查看它们在 CSS 中的来源,它似乎来自以下规则:
mix-blend-mode: exclusion;
添加此规则应该可以满足您的要求。如果您想了解更多信息,我建议您看这里:https ://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode
于 2021-05-11T17:34:50.493 回答
0
您可以css mix-blend-mode
在文本容器或文本本身中使用,您可以为文本添加颜色以提供更多详细信息,更多信息请点击此处
.bg{
background-image:url('https://i.picsum.photos/id/866/400/400.jpg?hmac=oHJBlOQwtaF75oX43dFtPf4At_GRLEx9FQqkkfpLR5U');
background-size: 100%;
background-size: cover;
background-repeat: no-repeat;
}
.blend{
mix-blend-mode: exclusion;
color: white;
display: block;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-size: 6rem;
}
<div class="bg">
<div class="blend">
<p>This ts text</p>
</div>
</div>
于 2021-05-11T17:52:20.193 回答