Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <div class="logo"></div>
  2.  
  3. .logo {
  4. position: absolute;
  5. width: 100px;
  6. height: 100px;
  7. background: red;
  8. transform: translate(25px,500px);
  9. -webkit-animation: logo 3s 1;
  10. -moz-animation: logo 3s 1;
  11. -webkit-animation-delay: 3s;
  12. -moz-animation-delay: 3s;
  13. }
  14. @-webkit-keyframes logo{
  15. 0% {
  16. transform: translate(80px, 200px);
  17. }
  18. 100% {
  19. transform: translate(25px, 500px);
  20. }
  21. }
  22. @keyframes logo{
  23. 0% {
  24. transform: translate(80px, 200px);
  25. }
  26. 100% {
  27. transform: translate(25px, 500px);
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement