loader.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .load {
  2. width: 100px;
  3. height: 100px;
  4. position: relative;
  5. margin: 0 auto;
  6. margin-top: 100px;
  7. }
  8. .load span {
  9. display: inline-block;
  10. width: 17px;
  11. height: 17px;
  12. border-radius: 50%;
  13. background: #b6b3b5;
  14. position: absolute;
  15. -webkit-animation: load 1.04s ease infinite;
  16. }
  17. @-webkit-keyframes load {
  18. 0% {
  19. opacity: 1;
  20. }
  21. 100% {
  22. opacity: 0.2;
  23. }
  24. }
  25. .load span:nth-child(1) {
  26. left: 0;
  27. top: 50%;
  28. margin-top: -8px;
  29. -webkit-animation-delay: 0.13s;
  30. }
  31. .load span:nth-child(2) {
  32. left: 15px;
  33. top: 15px;
  34. -webkit-animation-delay: 0.26s;
  35. }
  36. .load span:nth-child(3) {
  37. left: 50%;
  38. top: 0;
  39. margin-left: -8px;
  40. -webkit-animation-delay: 0.39s;
  41. }
  42. .load span:nth-child(4) {
  43. top: 15px;
  44. right: 15px;
  45. -webkit-animation-delay: 0.52s;
  46. }
  47. .load span:nth-child(5) {
  48. right: 0;
  49. top: 50%;
  50. margin-top: -8px;
  51. -webkit-animation-delay: 0.65s;
  52. }
  53. .load span:nth-child(6) {
  54. right: 15px;
  55. bottom: 15px;
  56. -webkit-animation-delay: 0.78s;
  57. }
  58. .load span:nth-child(7) {
  59. bottom: 0;
  60. left: 50%;
  61. margin-left: -8px;
  62. -webkit-animation-delay: 0.91s;
  63. }
  64. .load span:nth-child(8) {
  65. bottom: 15px;
  66. left: 15px;
  67. -webkit-animation-delay: 1.04s;
  68. }