如何在不使用 CSS 属性 mix-blend-mode 的情况下获得混合模式效果: multiply
How to get a blend mode effect without use the CSS property mix-blend-mode: multiply
我想做一个应该看起来像这个代码输出的东西,但不使用 css 的 属性 mix-blend-mode: multiply
,以获得对某些旧版本的支持现代浏览器。
CSS这个功能支持度还很低,看这个linkcaniuse.com[mix-blend-mode]
.active{
font-size: 80px;
font-family: "DejaVu Sans";
text-align: center;
color: #646e7a;
}
.active::after {
background: #00d7a7 none repeat scroll 0 0;
content: "";
height: 45px;
left: 10%;
margin-top: 0;
mix-blend-mode: multiply;
position: absolute;
right: 10%;
top: 13.8%;
}
<div class="active">
WEB
</div>
这是我找到的一个很好的解决方案:
.active{
background: #00d7a7 none repeat scroll 0 0;
color: rgba(30, 40, 52, 0.73);
font-family: "DejaVu Sans";
font-size: 80px;
height: 45px;
line-height: 0.6;
position: relative;
text-align: center;
top: 20px;
}
<div class="active">
WEB
</div>
我想做一个应该看起来像这个代码输出的东西,但不使用 css 的 属性 mix-blend-mode: multiply
,以获得对某些旧版本的支持现代浏览器。
CSS这个功能支持度还很低,看这个linkcaniuse.com[mix-blend-mode]
.active{
font-size: 80px;
font-family: "DejaVu Sans";
text-align: center;
color: #646e7a;
}
.active::after {
background: #00d7a7 none repeat scroll 0 0;
content: "";
height: 45px;
left: 10%;
margin-top: 0;
mix-blend-mode: multiply;
position: absolute;
right: 10%;
top: 13.8%;
}
<div class="active">
WEB
</div>
这是我找到的一个很好的解决方案:
.active{
background: #00d7a7 none repeat scroll 0 0;
color: rgba(30, 40, 52, 0.73);
font-family: "DejaVu Sans";
font-size: 80px;
height: 45px;
line-height: 0.6;
position: relative;
text-align: center;
top: 20px;
}
<div class="active">
WEB
</div>