Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. div {
  2. width: 50px;
  3. height: 50px;
  4. background-color: blue;
  5. position: relative;
  6. animation-name: exemplo;
  7. animation-duration: 4s;
  8. animation-iteration-count: infinite;
  9. }
  10. @keyframes exaemplo {
  11. 0% {background-color:blue; left:0px; top:0px;}
  12. 25% {background-color:yellow; left:200px; top:0px;}
  13. 50% {background-color:red; left:200px; top:200px;}
  14. 75% {background-color:green; left:0px; top:200px;}
  15. 100% {background-color:red; left:0px; top:0px;}
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement