Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @-webkit-keyframes blink{
  2. 0% { opacity: 1.0; }
  3. 50% { opacity: 0.0; }
  4. 100% { opacity: 1.0; }
  5. }
  6. @keyframes blink{
  7. 0% { opacity: 1.0; }
  8. 50% { opacity: 0.0; }
  9. 100% { opacity: 1.0; }
  10. }
  11.  
  12. .blink{
  13. -webkit-animation: blink 1s step-start 0s infinite;
  14. animation: blink 1s step-start 0s infinite;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement