Guest User

Untitled

a guest
Nov 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. .animacion_1{
  2. transition-duration:2s;
  3. position:absolute;
  4. animation-name: example;
  5. animation-delay: 5s;
  6. animation-duration: 7s;
  7. animation-iteration-count: infinite;
  8. animation-timing-function: linear;
  9. border-radius: 100%;
  10. }
  11.  
  12. .animacion_2{
  13. transition-duration:2s;
  14. position:absolute;
  15. animation-name: example;
  16. animation-delay: 3s;
  17. animation-duration: 7s;
  18. animation-iteration-count: infinite;
  19. animation-timing-function: linear;
  20. border-radius: 100%;
  21. }
  22.  
  23. .animacion_3{
  24. transition-duration:2s;
  25. position:absolute;
  26. animation-name: example;
  27. animation-delay: 9s;
  28. animation-duration: 7s;
  29. animation-iteration-count: infinite;
  30. animation-timing-function: linear;
  31. border-radius: 100%;
  32. }
  33.  
  34. @keyframes example {
  35.  
  36. 0% {transform: scale(0.1)}
  37. 50% {transform: scale(1)}
  38. 100% {transform: scale(.1)}
  39. }
Add Comment
Please, Sign In to add comment