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; |
|||
animation-duration: 4s; |
animation-duration: 4s; |
||
animation-name: glitch; |
animation-name: glitch; |
||
| Line 9: | Line 10: | ||
@keyframes glitch { |
@keyframes glitch { |
||
from { |
from { |
||
top: -6px; |
|||
left: -6px; |
|||
} |
} |
||
to { |
to { |
||
top: 6px; |
|||
left: 6px; |
|||
} |
} |
||
} |
} |
||