Guest User

Untitled

a guest
Sep 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4. @-webkit-keyframes animation{
  5. 0% {opacity: 0.5;}
  6. 50% {opacity: 1;}
  7. 100% {opacity: 0.5;}
  8. }
  9. @-webkit-keyframes animation2{
  10. 0% {-webkit-transform: rotate(0deg), scale(2,3);background:green;left:600px;}
  11. 50% {-webkit-transform: rotate(180deg);background:red;left:100px;}
  12. 100% {-webkit-transform: rotate(0deg);background:green;left:600px;}
  13. }
  14.  
  15. li{
  16. display:inline;}
  17. #am1{
  18. position:relative;
  19. display:block;
  20. width:100px;
  21. height:200px;
  22. left:100px;
  23. background:rgba(15,52,5,255);
  24. -webkit-animation: animation 5s infinite, animation2 5s infinite;
  25. color:rgba(128,15,23,255);
  26. }
Add Comment
Please, Sign In to add comment