elroseria

floating text

Mar 30th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.51 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% { transform: translate(0,  0px); }
  16.     50%  { transform: translate(0, 15px); }
  17.     100%   { transform: translate(0, -0px); }    
  18. }
  19.  
  20. </style>
  21. <div id="float">floating text</div>
Add Comment
Please, Sign In to add comment