invaderzim

pulse animation

Dec 30th, 2021 (edited)
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.20 KB | None | 0 0
  1. <style>
  2. @keyframes pulse {
  3. 0% {transform: scale(1);}
  4. 50% {transform: scale(1.25);}
  5. 100% {transform: scale(1);}
  6. }
  7. #pulse {
  8. animation: pulse 1s infinite;
  9. }
  10. </style>
  11.  
  12. <div id="pulse">text</div>
Add Comment
Please, Sign In to add comment