Advertisement
ruesha

floating text

Jul 17th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <style>
  2. #float {
  3. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  4. font-style: italic;
  5. font-size: 2em;
  6. font-weight: bold;
  7. color: #fff;
  8. animation-name: floating;
  9. animation-duration: 3s;
  10. animation-iteration-count: infinite;
  11. animation-timing-function: ease-in-out;
  12. }
  13.  
  14. @keyframes floating {
  15. 0% {
  16. transform: translate(0, 0px);
  17. }
  18.  
  19. 50% {
  20. transform: translate(0, 15px);
  21. }
  22.  
  23. 100% {
  24. transform: translate(0, -0px);
  25. }
  26. }
  27. </style>
  28. <div id="float">text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement