Advertisement
Dgame321

Untitled

Nov 10th, 2019
6,440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Game-Alts | Loading</title>
  7. <meta http-equiv="refresh" content="5;url=login.php" />
  8. <link rel="shortcut icon" href="https://pbs.twimg.com/profile_images/517955292378562560/PETmb2v2.jpeg">
  9. <style>
  10. body, html {
  11. width: 100%;
  12. height: 100%;
  13. background-color: #f8f4d5;
  14. }
  15.  
  16. .container {
  17. width: 200px;
  18. height: 200px;
  19. position: absolute;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. margin: auto;
  24. filter: url('#goo');
  25. animation: rotate-move 2s ease-in-out infinite;
  26. }
  27.  
  28. .dot {
  29. width: 70px;
  30. height: 70px;
  31. border-radius: 50%;
  32. background-color: #000;
  33. position: absolute;
  34. top: 0;
  35. bottom: 0;
  36. left: 0;
  37. right: 0;
  38. margin: auto;
  39. }
  40.  
  41. .dot-3 {
  42. background-color: #f74d75;
  43. animation: dot-3-move 2s ease infinite, index 6s ease infinite;
  44. }
  45.  
  46. .dot-2 {
  47. background-color: #10beae;
  48. animation: dot-2-move 2s ease infinite, index 6s -4s ease infinite;
  49. }
  50.  
  51. .dot-1 {
  52. background-color: #ffe386;
  53. animation: dot-1-move 2s ease infinite, index 6s -2s ease infinite;
  54. }
  55.  
  56. @keyframes dot-3-move {
  57. 20% {transform: scale(1)}
  58. 45% {transform: translateY(-18px) scale(.45)}
  59. 60% {transform: translateY(-90px) scale(.45)}
  60. 80% {transform: translateY(-90px) scale(.45)}
  61. 100% {transform: translateY(0px) scale(1)}
  62. }
  63.  
  64. @keyframes dot-2-move {
  65. 20% {transform: scale(1)}
  66. 45% {transform: translate(-16px, 12px) scale(.45)}
  67. 60% {transform: translate(-80px, 60px) scale(.45)}
  68. 80% {transform: translate(-80px, 60px) scale(.45)}
  69. 100% {transform: translateY(0px) scale(1)}
  70. }
  71.  
  72. @keyframes dot-1-move {
  73. 20% {transform: scale(1)}
  74. 45% {transform: translate(16px, 12px) scale(.45)}
  75. 60% {transform: translate(80px, 60px) scale(.45)}
  76. 80% {transform: translate(80px, 60px) scale(.45)}
  77. 100% {transform: translateY(0px) scale(1)}
  78. }
  79.  
  80. @keyframes rotate-move {
  81. 55% {transform: translate(-50%, -50%) rotate(0deg)}
  82. 80% {transform: translate(-50%, -50%) rotate(360deg)}
  83. 100% {transform: translate(-50%, -50%) rotate(360deg)}
  84. }
  85.  
  86. @keyframes index {
  87. 0%, 100% {z-index: 3}
  88. 33.3% {z-index: 2}
  89. 66.6% {z-index: 1}
  90. }
  91. 1×0.5×0.25×
  92. </style>
  93.  
  94. </head>
  95.  
  96. <div class="container">
  97. <div class="dot dot-1"></div>
  98. <div class="dot dot-2"></div>
  99. <div class="dot dot-3"></div>
  100. </div>
  101.  
  102. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  103. <defs>
  104. <filter id="goo">
  105. <feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
  106. <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7"/>
  107. </filter>
  108. </defs>
  109. </svg>
  110.  
  111.  
  112.  
  113. </body>
  114.  
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement