这是屏幕混合模式应该做的:
这就是我的 CSS 所做的: https ://codepen.io/Thisisntme/pen/LYGypRz
* {
mix-blend-mode: screen;
}
body {
background: black;
mix-blend-mode: screen;
}
h1 {
font-family: "Work Sans", sans-serif;
font-weight: 400;
font-size: 12vw;
color: White;
mix-blend-mode: screen;
z-index: 1;
text-align: center;
text-shadow: 5px 10px 5px #FF0000, -5px 10px 5px #00FF00,5px -10px 5px #0000FF;
}
<h1>testing testing</h1>
我究竟做错了什么?