Template:Glitch Text Effect/styles.css
Template page
More actions
.glitch-effect {
position: relative;
animation-duration: 0.2s;
animation-name: glitch;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
}
@keyframes glitch {
from {
text-shadow: -2px 0 0.5px red;
left: -1px;
}
to {
text-shadow: 2px 0 0.5px red;
left: 1px;
}
}