Advertisement
ruesha

tilting text

Jul 17th, 2024
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <style>
  2.  
  3. #tilt {
  4. text-align: center;
  5. animation: floaty 1s infinite alternate;
  6. }
  7.  
  8. @keyframes floaty {
  9. from { transform: rotate(-5deg); }
  10. to { transform: rotate(5deg); }
  11. }
  12.  
  13. </style>
  14.  
  15. <div id="tilt">tilt text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement