Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. .a {
  5. width: 100px;
  6. height: 100px;
  7. background-color: red;
  8. position: relative;
  9. animation-name: example;
  10. animation-duration: 4s;
  11. animation-delay: 2s;
  12.  
  13. }
  14. .b{
  15. width:400px;
  16. height:400px;
  17. background-color:yellow;
  18. position:fixed;
  19. top:0;
  20. bottom:0;
  21. }
  22.  
  23. @keyframes example {
  24. 0% { left:0px; top:0px;}
  25. 16.6% { left:300px; top:300px;}
  26. 33.2% { left:0px; top:0px;}
  27. 49.4% { left:300px; top:0px;}
  28. 65.6%{ left:300px; top:300px;}
  29. 82.2%{ left:0px; top:300px;}
  30. 100%{ left:0px; top:0px;}
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="b">
  36. <div class="a"></div></div>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement