Guest User

Untitled

a guest
Dec 10th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>pulse</title>
  6. <style>
  7. @keyframes glow-pulse {
  8. 0% { opacity: 0.5; }
  9. 60% { opacity: 1.0; }
  10. 100% { opacity: 0.5; }
  11. }
  12.  
  13. .pulse {
  14. width: 100px;
  15. height: 100px;
  16. border-radius: 100%;
  17. background-color: #609;
  18. animation: glow-pulse 1s infinite;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="pulse"></div>
  24. </body>
  25. </html>
Add Comment
Please, Sign In to add comment