sentry-loader.svg 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90">
  2. <style>
  3. .logo-spin-0,
  4. .logo-spin-1 {
  5. transform-origin: 50% 50%;
  6. stroke-dasharray: 300;
  7. }
  8. .logo-spin-0 {
  9. animation: logo-draw 4s cubic-bezier(0.99, 0, 0.53, 1) infinite,
  10. logo-spin 4s cubic-bezier(0.77, -0.63, 0.12, 1.45) infinite;
  11. stroke: #000;
  12. stroke-dashoffset: 300;
  13. }
  14. .logo-spin-1 {
  15. animation: logo-visible 4s cubic-bezier(0.77, -0.63, 0.12, 1.16) infinite,
  16. logo-spin 4s cubic-bezier(0.81, -0.61, 0.09, 1.41) infinite;
  17. opacity: 0;
  18. stroke: rgba(0, 0, 0, 0.5);
  19. stroke-dashoffset: 0;
  20. }
  21. @keyframes logo-visible {
  22. 40% {
  23. opacity: 0;
  24. }
  25. 45% {
  26. opacity: 0;
  27. filter: blur(0px);
  28. }
  29. 46% {
  30. opacity: 1;
  31. filter: blur(0.4px);
  32. }
  33. 65% {
  34. opacity: 1;
  35. filter: blur(0.7px);
  36. }
  37. 67% {
  38. opacity: 0;
  39. filter: blur(0px);
  40. }
  41. }
  42. @keyframes logo-spin {
  43. 45% {
  44. transform: scale(1) rotate(0deg);
  45. }
  46. 46% {
  47. transform: scale(0.95) rotate(0deg);
  48. }
  49. 66% {
  50. transform: scale(1) rotate(360deg);
  51. }
  52. 100% {
  53. transform: scale(1) rotate(360deg);
  54. }
  55. }
  56. @keyframes logo-draw {
  57. 0% {
  58. stroke-dashoffset: 300;
  59. }
  60. 33% {
  61. stroke-dashoffset: 0;
  62. }
  63. 64% {
  64. stroke-dashoffset: 0;
  65. }
  66. 100% {
  67. stroke-dashoffset: 300;
  68. }
  69. }
  70. </style>
  71. <defs>
  72. <path id="loading-logo" fill="none" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" d="M8.07 50.083c-1.744 2.885-3.192 5.403-4.344 7.556-1.729 3.228.522 6.041 3.335 6.041h18.86c.056-10.925-6.902-18.96-12.867-22.226 1.9-3.173 5.12-8.986 6.313-10.984 12.02 6.966 19.14 19.803 19.14 33.21 4.01.027 8.422 0 12.638 0 .01-16.823-8.633-34.304-25.512-44.004 4.289-7.375 7.02-12.354 8.532-14.733 1.512-2.378 5.214-2.395 6.656 0 1.443 2.395 28.98 50.16 30.451 52.696 1.471 2.536.034 6.041-3.751 6.041h-6.789"></path>
  73. </defs>
  74. <use x="5" y="5" href="#loading-logo" class="logo-spin-1"></use>
  75. <use x="5" y="5" href="#loading-logo" class="logo-spin-0"></use>
  76. </svg>