Template:Glitch Text Effect/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
.glitch-effect { |
.glitch-effect { |
||
position: relative; |
position: relative; |
||
animation-duration: 0. |
animation-duration: 0.5s; |
||
animation-name: glitch; |
animation-name: glitch; |
||
animation-iteration-count: infinite; |
animation-iteration-count: infinite; |
||
Revision as of 08:07, March 8, 2025
.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;
}
}