Template:Glitch Text Effect/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) Created page with ".glitch-effect { position: relative; animation-name: glitch; animation-iteration-count: infinite; animation-direction: alternate; animation-timing-function: linear; } @keyframes glitch { from { top: 2px; left: 2px; } to { top: -2px; left: -2px; } }" |
Tesinormed (talk | contribs) No edit summary |
||
| Line 9: | Line 9: | ||
@keyframes glitch { |
@keyframes glitch { |
||
from { |
from { |
||
top: |
top: 2%; |
||
left: |
left: 2%; |
||
} |
} |
||
to { |
to { |
||
top: - |
top: -2%; |
||
left: - |
left: -2%; |
||
} |
} |
||
} |
} |
||