Mayx's Home Page https://mabbs.github.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB

  1. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" class="m-loading-icon m-loading-wipe">
  2. <defs>
  3. <style>
  4. .m-loading-icon {
  5. stroke: #343640;
  6. stroke-width: 3.5;
  7. stroke-linecap: round;
  8. background: none;
  9. vertical-align: middle;
  10. }
  11. .m-loading-icon .m-loading-icon-bg-path{
  12. fill: none;
  13. stroke: #F2F2F2;
  14. }
  15. .m-loading-icon .m-loading-icon-active-path{
  16. fill: none;
  17. stroke: #666666;
  18. transform-origin: 50% 50%;
  19. }
  20. .m-loading-wipe .m-loading-icon-active-path{
  21. stroke-dasharray: 90, 150;
  22. stroke-dashoffset: 0;
  23. animation: loading-wipe 1.5s ease-in-out infinite, loading-rotate 2s linear infinite;
  24. }
  25. .m-loading-default .m-loading-icon-active-path{
  26. stroke-dasharray: 60, 150;
  27. animation: loading-rotate 0.8s linear infinite;
  28. }
  29. @keyframes loading-rotate{
  30. to{transform:rotate(1turn)}
  31. }
  32. @keyframes loading-wipe{
  33. 0%{
  34. stroke-dasharray:1,200;
  35. stroke-dashoffset:0;
  36. }
  37. 50%{
  38. stroke-dasharray:90,150;
  39. stroke-dashoffset:-40px;
  40. }
  41. to{
  42. stroke-dasharray:90,150;
  43. stroke-dashoffset:-120px;
  44. }
  45. }
  46. </style>
  47. </defs>
  48. <title>loading</title>
  49. <g>
  50. <g>
  51. <circle cx="25" cy="25" r="20" class="m-loading-icon-bg-path"></circle>
  52. <circle cx="25" cy="25" r="20" class="m-loading-icon-active-path"></circle>
  53. </g>
  54. </g>
  55. </svg>

Powered by TurnKey Linux.