developer
  1. <!DOCTYPE html>
  2. <meta charset="utf-8">
  3. <title>TO'P</title>
  4. <style type="text/css">
  5. .phdr{
  6. border: 1px solid red;
  7. width: 90%;
  8. height: 600px;
  9. background-color: #a2f688;
  10. margin: 5px auto;
  11. position: relative;
  12. }
  13. /*.top{
  14. border: 0px solid red;
  15. background-color: black;
  16. width: 40px;
  17. height: 40px;
  18. border-radius: 100%;
  19. position: absolute;
  20. left: 10px;
  21. bottom: 5px;
  22. }*/
  23. .ustun{
  24. border: 0px solid black;
  25. width: 30px;
  26. height: 400px;
  27. background-color: black;
  28. position: absolute;
  29. right: 0px;
  30. bottom: 0px;
  31. }
  32. .qosqon{
  33. border: 0px solid black;
  34. width: 100px;
  35. height: 100px;
  36. background-color: black;
  37. position: absolute;
  38. right: 30px;
  39. bottom: 300px;
  40. }
  41. .shit{
  42. border: 2px solid red;
  43. width: 100px;
  44. height: 50px;
  45. border-radius: 100%;
  46. position: absolute;
  47. right: 130px;
  48. bottom: 330px;
  49.  
  50.  
  51. }
  52. .top{
  53. border: 0px solid red;
  54. background-color: black;
  55. width: 40px;
  56. height: 40px;
  57. border-radius: 100%;
  58. position: absolute;
  59. left: 10px;
  60. bottom: 150px;
  61. animation-name: top;
  62. animation-duration: 4s;
  63. animation-delay: 3s;
  64. animation-fill-mode: forwards;
  65. animation-iteration-count: infinite;
  66.  
  67. }
  68.  
  69. @keyframes top{
  70. 0%{left: 10px; bottom: 150px;}
  71. 10%{left: 10px; bottom: 3px;}
  72. 15%{left: 10px; bottom: 150px;}
  73. 20%{left: 10px; bottom: 3px;}
  74. 50%{left: 970px; bottom: 550px;}
  75. 70%{left: 980px; bottom: 3px;}
  76. 80%{left: 980px; bottom: 150px;}
  77. 90%{left: 980px; bottom: 3px;}
  78. 100%{left: 10px; bottom: 3px;}
  79. }
  80. .tag{
  81. border: 3px dotted black;
  82. width: 40px;
  83. height: 15px;
  84. border-radius: 10px;
  85. position: absolute;
  86. left: 10px;
  87. bottom: 135px;
  88. animation: tag 3s ease-in-out 1 0s;
  89. animation-fill-mode: forwards;
  90.  
  91.  
  92. }
  93. @keyframes tag{
  94. from{left: 10px; bottom: 135px;}
  95. to{left: 50px; bottom: 135px;}
  96. }
  97.  
  98. </head>
  99. <div class="phdr">
  100. <div class="top"></div>
  101. <div class="tag"></div>
  102. <div class="ustun"></div>
  103. <div class="qosqon"></div>
  104. <div class="shit"></div>
  105. </div>
  106.  
  107. </body>
  108. </html>