powylv

lovespace blinking text

Oct 21st, 2022 (edited)
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <style>
  2. .blink {
  3. font: 2rem sans-serif;
  4. -webkit-animation: blink 1s linear infinite;
  5. animation: blink 1s linear infinite;
  6. }
  7.  
  8. @keyframes blink {
  9. 0% {
  10. opacity:1
  11. }
  12. 1% {
  13. opacity: 0
  14. }
  15. 2% {
  16. opacity:1
  17. }
  18. 16% {
  19. opacity: 1
  20. }
  21. 17% {
  22. opacity: 0
  23. }
  24. 20% {
  25. opacity: 1 }
  26. to {
  27. opacity: 1
  28. }
  29. }
  30. </style>
  31.  
  32. <div class="blink">blinking text</div>
Advertisement
Add Comment
Please, Sign In to add comment