index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta http-equiv="pragram" content="no-cache">
  7. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
  8. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  9. <!-- <link rel="icon" href="<%= BASE_URL %>favicon.png" /> -->
  10. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  11. <title>FMEA管理系统</title>
  12. <style>
  13. #loading-mask {
  14. position: fixed;
  15. left: 0;
  16. top: 0;
  17. height: 100%;
  18. width: 100%;
  19. background: #fff;
  20. user-select: none;
  21. z-index: 9999;
  22. overflow: hidden;
  23. }
  24. .loading-wrapper {
  25. position: absolute;
  26. top: 50%;
  27. left: 50%;
  28. transform: translate(-50%, -100%);
  29. }
  30. .loading-dot {
  31. animation: antRotate 1.2s infinite linear;
  32. transform: rotate(45deg);
  33. position: relative;
  34. display: inline-block;
  35. font-size: 64px;
  36. width: 64px;
  37. height: 64px;
  38. box-sizing: border-box;
  39. }
  40. .loading-dot i {
  41. width: 22px;
  42. height: 22px;
  43. position: absolute;
  44. display: block;
  45. background-color: #1890FF;
  46. border-radius: 100%;
  47. transform: scale(0.75);
  48. transform-origin: 50% 50%;
  49. opacity: 0.3;
  50. animation: antSpinMove 1s infinite linear alternate;
  51. }
  52. .loading-dot i:nth-child(1) {
  53. top: 0;
  54. left: 0;
  55. }
  56. .loading-dot i:nth-child(2) {
  57. top: 0;
  58. right: 0;
  59. -webkit-animation-delay: 0.4s;
  60. animation-delay: 0.4s;
  61. }
  62. .loading-dot i:nth-child(3) {
  63. right: 0;
  64. bottom: 0;
  65. -webkit-animation-delay: 0.8s;
  66. animation-delay: 0.8s;
  67. }
  68. .loading-dot i:nth-child(4) {
  69. bottom: 0;
  70. left: 0;
  71. -webkit-animation-delay: 1.2s;
  72. animation-delay: 1.2s;
  73. }
  74. @keyframes antRotate {
  75. to {
  76. -webkit-transform: rotate(405deg);
  77. transform: rotate(405deg);
  78. }
  79. }
  80. @-webkit-keyframes antRotate {
  81. to {
  82. -webkit-transform: rotate(405deg);
  83. transform: rotate(405deg);
  84. }
  85. }
  86. @keyframes antSpinMove {
  87. to {
  88. opacity: 1;
  89. }
  90. }
  91. @-webkit-keyframes antSpinMove {
  92. to {
  93. opacity: 1;
  94. }
  95. }
  96. </style>
  97. </head>
  98. <body>
  99. <noscript>
  100. <strong>We're sorry but vue-antd-pro doesn't work properly without JavaScript enabled. Please enable it to
  101. continue.</strong>
  102. </noscript>
  103. <div id="app">
  104. <div id="loading-mask">
  105. <div class="loading-wrapper">
  106. <span class="loading-dot loading-dot-spin">
  107. <i></i>
  108. <i></i>
  109. <i></i>
  110. <i></i>
  111. </span>
  112. </div>
  113. </div>
  114. </div>
  115. </body>
  116. </html>