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