Advertisement
naocrrds

tilting text

Dec 30th, 2024
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <style>
  2. #scream {
  3. animation-name: hi;
  4. animation-duration: 2s;
  5. animation-iteration-count: infinite;
  6. line-height: 0em;
  7. bottom: -5px;
  8. position: relative;
  9. font-size: 2rem;
  10. text-align: center;
  11. font-family: sant joan;
  12. }
  13.  
  14. @keyframes hi {
  15. 0% {
  16. transform: rotate(5deg);
  17. }
  18.  
  19. 50% {
  20. transform: rotate(-5deg);
  21. }
  22.  
  23. 100% {
  24. transform: rotate(5deg);
  25. }
  26. }
  27.  
  28. </style><br><br />
  29. <div id="scream"> tilting text</div>
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement