Scrolling Weave
Fill & Texture · Animated · pure CSS
A fine two-tone crosshatch weave clipped to the text that scrolls diagonally on a loop. A moving woven material fill.
CSS
/* Scrolling Weave — generated with TEXT-FX
* HTML: just put the class on any element.
* Font: 'Space Grotesk', sans-serif (load from Google Fonts).
*/
.text-effect {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
letter-spacing: 0px;
text-transform: none;
}
.text-effect {
background: repeating-linear-gradient(-45deg, transparent 0 14px, hsl(160 85% 70% / 0.5) 14px 15px), repeating-linear-gradient(45deg, hsl(320 80% 60%) 0 14px, hsl(344 75% 40%) 14px 28px);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
animation: text-effect-weave 5.2s linear infinite;
}
@keyframes text-effect-weave {
to { background-position: 28px 28px, 28px -28px; }
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Fill & Texture
- Type
- Animated
- Browser support
- background-clip:text + scrolling repeating-linear-gradient crosshatch
- Capabilities
- pure