Problem: Glitch Text Animation
Try to create a glitchy text effect by duplicating and animating colored slices of text using pseudo-elements and CSS keyframes.
We'll cover the following...
We'll cover the following...
Problem description
Given an HTML page containing a single <h1 class="glitch">Glitch Text</h1>
element, write CSS to:
Position
.glitch
asrelative
and set a fallback font style.Use
::before
and::after
pseudo-elements to duplicate the text content (viacontent: attr(data-text)
), absolutely positioned over the original.Style the ...