Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /**
  2. * Blinking
  3. */
  4.  
  5. @keyframes blink-1 { 50% { color: transparent } }
  6. @keyframes blink-2 { to { color: transparent } }
  7.  
  8. p {
  9. padding: 1em;
  10. background: gold;
  11. }
  12.  
  13. .blink-smooth-1 {
  14. animation: 1s blink-1 3;
  15. }
  16.  
  17. .blink-smooth-2 {
  18. animation: .5s blink-2 6;
  19. animation-direction: alternate;
  20. }
  21.  
  22. .blink {
  23. animation: 1s blink-1 3 steps(1);
  24. }
Add Comment
Please, Sign In to add comment