index.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <!DOCTYPE html>
  2. <html lang="zh_cn">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="/favicon.ico">
  8. <title>冷链平台</title>
  9. <style>
  10. .dot {
  11. animation: antRotate 1.2s infinite linear;
  12. transform: rotate(45deg);
  13. position: relative;
  14. display: inline-block;
  15. font-size: 32px;
  16. width: 32px;
  17. height: 32px;
  18. box-sizing: border-box
  19. }
  20. .dot i {
  21. width: 14px;
  22. height: 14px;
  23. position: absolute;
  24. display: block;
  25. background-color: #1677FF;
  26. border-radius: 100%;
  27. transform: scale(.75);
  28. transform-origin: 50% 50%;
  29. opacity: .3;
  30. animation: antSpinMove 1s infinite linear alternate
  31. }
  32. .dot i:nth-child(1) {
  33. top: 0;
  34. left: 0
  35. }
  36. .dot i:nth-child(2) {
  37. top: 0;
  38. right: 0;
  39. -webkit-animation-delay: .4s;
  40. animation-delay: .4s
  41. }
  42. .dot i:nth-child(3) {
  43. right: 0;
  44. bottom: 0;
  45. -webkit-animation-delay: .8s;
  46. animation-delay: .8s
  47. }
  48. .dot i:nth-child(4) {
  49. bottom: 0;
  50. left: 0;
  51. -webkit-animation-delay: 1.2s;
  52. animation-delay: 1.2s
  53. }
  54. @keyframes antRotate {
  55. to {
  56. -webkit-transform: rotate(405deg);
  57. transform: rotate(405deg)
  58. }
  59. }
  60. @-webkit-keyframes antRotate {
  61. to {
  62. -webkit-transform: rotate(405deg);
  63. transform: rotate(405deg)
  64. }
  65. }
  66. @keyframes antSpinMove {
  67. to {
  68. opacity: 1
  69. }
  70. }
  71. @-webkit-keyframes antSpinMove {
  72. to {
  73. opacity: 1
  74. }
  75. }
  76. .app-loading {
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. right: 0;
  81. bottom: 0;
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. flex-direction: column;
  86. background: #fff;
  87. }
  88. .app-loading-logo {
  89. margin-bottom: 30px;
  90. }
  91. .app-loading-logo img {
  92. width: 90px;
  93. vertical-align: bottom;
  94. }
  95. .app-loading-title {
  96. font-size: 24px;
  97. color: #333;
  98. margin-top: 30px;
  99. }
  100. .app-main {
  101. height: 100%
  102. }
  103. @keyframes loader {
  104. 0% {
  105. transform: rotate(0deg);
  106. }
  107. 100% {
  108. transform: rotate(360deg);
  109. }
  110. }
  111. </style>
  112. </head>
  113. <body>
  114. <noscript>
  115. <strong>We're sorry but Snowy doesn't work properly without JavaScript
  116. enabled. Please enable it to continue.</strong>
  117. </noscript>
  118. <div id="app" class="app-main"></div>
  119. <script type="module" src="/src/main.js"></script>
  120. </body>
  121. </html>