Guest User

Untitled

a guest
Apr 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. .item-1 .ball {
  2. animation: circle-1 1s infinite alternate;
  3. }
  4. @keyframes circle-1 {
  5. from {
  6. transform: translateX(0px) scale(2, 2);
  7. }
  8. to {
  9. transform: translateX(300px) scale(0 ,0) ;
  10. }
  11. }
  12. .item-2 .ball {
  13. animation: circle-2 1s infinite alternate;
  14. }
  15. @keyframes circle-2 {
  16. from {
  17. transform: translateX(0px) scaleX(8);
  18. }
  19. to {
  20. transform: translateX(300px) scale(0.5) rotate(90deg);
  21. }
  22. }
Add Comment
Please, Sign In to add comment