Advertisement
miitopias

unexpand text

Nov 11th, 2021
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #unexpand {
  2. font-size: 2em;
  3. animation: text-shadow 2s ease-in-out infinite;
  4. }
  5.  
  6. @keyframes text-shadow {
  7. 0% {
  8. text-shadow: 0px 1px grey, 0px -1px grey;
  9. }
  10.  
  11. 20% {
  12. text-shadow: 0px 4px grey, 0px -4px grey;
  13. }
  14.  
  15. 40% {
  16. text-shadow: 0px 2.5px grey, 0px -2.5px grey;
  17. }
  18.  
  19. 60% {
  20. text-shadow: 0px 5.5px grey, 0px -5.5px grey;
  21. }
  22.  
  23. 80% {
  24. text-shadow: 0px 2px grey, 0px -2px grey;
  25. }
  26.  
  27. 100% {
  28. text-shadow: 0px 0px grey, 0px 0px grey;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement