Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style type="text/css">
  7.  
  8. @keyframes racing-square {
  9. 0%{
  10. left:0px;
  11. top:0px;
  12. }
  13. 25%{
  14. top:0;
  15. left:200px;
  16. }
  17. 50%{
  18. left:200px;
  19. top:200px;
  20. }
  21. 75%{
  22. left:0px;
  23. top:200px;
  24. }
  25. 100%{
  26. left:0px;
  27. top:0px;
  28. }
  29. }
  30.  
  31. .container{
  32. position:relative;
  33. }
  34.  
  35. .container:hover{
  36.  
  37. }
  38.  
  39. .sample-animation{
  40. animation: racing-square 4s linear infinite;
  41. }
  42.  
  43. .container div:nth-child(1){
  44. background-color: black;
  45. }
  46.  
  47. .container div:nth-child(2){
  48. background-color: lightblue;
  49. animation-delay: 0.2s;
  50. }
  51.  
  52. .container div:nth-child(3){
  53. background-color: aquamarine;
  54. animation-delay: 0.4s;
  55. }
  56.  
  57. .container div:nth-child(4){
  58. background-color: darkolivegreen;
  59. animation-delay: 0.6s;
  60. }
  61.  
  62. .container > div {
  63. width: 16px;
  64. height: 16px;
  65. border-radius: 100%;
  66. display: inline-block;
  67. position: absolute;
  68. left:0;
  69. }
  70.  
  71. </style>
  72. </head>
  73. <body>
  74.  
  75. <div style="width: 300px;margin:50px auto 0px" class="container">
  76. <div class="sample-animation"></div>
  77. <div class="sample-animation"></div>
  78. <div class="sample-animation"></div>
  79. <div class="sample-animation"></div>
  80. </div>
  81.  
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement