<div class="wave">CSS WAVE</div>
<div class="wave" style="--c: #F44336">CSS WAVE</div>
html,
body {
margin: 0;
height: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background: aliceblue;
}
.wave {
--c: #2196f3;
--w1: radial-gradient(100% 57% at top, #0000 100%, var(--c) 100.5%) no-repeat;
--w2: radial-gradient(100% 57% at bottom, var(--c) 100%, #0000 100.5%)
no-repeat;
background: var(--w1), var(--w2), var(--w1), var(--w2);
background-position-x: -200%, -100%, 0%, 100%;
background-position-y: 100%;
background-size: 50.5% 100%;
animation: m 1s infinite linear;
font-size: 100px;
font-weight: bold;
color: transparent;
-webkit-background-clip: text;
-webkit-text-stroke: 2px var(--c);
}
@keyframes m {
0% {
background-position-x: -200%, -100%, 0%, 100%;
}
100% {
background-position-x: 0%, 100%, 200%, 300%;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.