teenagegoths

glitch text

Jun 25th, 2021 (edited)
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. <!-- cleaned up by toby because this is fucking atrocious -->
  2.  
  3. #glitch {
  4.     animation: glitch-2 1s infinite linear;
  5.     animation: glitch-1 2s infinite linear;
  6. }
  7.  
  8. @keyframes glitch-1 {
  9.     0%, 12%, 15%, 52%, 55%, 82%, 85%, 100%  {
  10.         opacity: 1; transform: scaleX(1) scaleY(1);
  11.         }
  12.  
  13.     13% {
  14.         opacity: .8; transform: scaleY(2); color: #;
  15.         }
  16.  
  17.     53% {
  18.         opacity: .8; transform: scaleX(.7); color: #;
  19.         }
  20.  
  21.     83% {
  22.         opacity: 8; transform: rotate(-10deg); color: #;
  23.         }
  24. }
  25.  
  26. @keyframes glitch-2 {
  27.     13% {
  28.         color: #;
  29.         }
  30.  
  31.     53% {
  32.         color: #;
  33.         }
  34.  
  35.     83% {
  36.         color: #;
  37.     }
  38. }
  39.  
Add Comment
Please, Sign In to add comment