index.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="renderer" content="webkit">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <link rel="icon" href="/IBMS.png">
  9. <title>IBMS楼宇集成数据大屏</title>
  10. <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
  11. <style>
  12. html,
  13. body,
  14. #app {
  15. height: 100%;
  16. margin: 0px;
  17. padding: 0px;
  18. overflow-y: auto;
  19. }
  20. #app::-webkit-scrollbar {
  21. display: none;
  22. scrollbar-width: none;
  23. scrollbar-color: transparent transparent;
  24. }
  25. .chromeframe {
  26. margin: 0.2em 0;
  27. background: #ccc;
  28. color: #000;
  29. padding: 0.2em 0;
  30. }
  31. .loading_card {
  32. width: 100%;
  33. height: 100vh;
  34. background-color: #0f2a42;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. .load_15 {
  40. width: 100px;
  41. height: 100px;
  42. display: inline-block;
  43. }
  44. .load_15 .sk-cube {
  45. width: 33%;
  46. height: 33%;
  47. background-color: #07aae7;
  48. float: left;
  49. -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  50. animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  51. }
  52. .load_15 .sk-cube1 {
  53. -webkit-animation-delay: 0.2s;
  54. animation-delay: 0.2s;
  55. }
  56. .load_15 .sk-cube2 {
  57. -webkit-animation-delay: 0.3s;
  58. animation-delay: 0.3s;
  59. }
  60. .load_15 .sk-cube3 {
  61. -webkit-animation-delay: 0.4s;
  62. animation-delay: 0.4s;
  63. }
  64. .load_15 .sk-cube4 {
  65. -webkit-animation-delay: 0.1s;
  66. animation-delay: 0.1s;
  67. }
  68. .load_15 .sk-cube5 {
  69. -webkit-animation-delay: 0.2s;
  70. animation-delay: 0.2s;
  71. }
  72. .load_15 .sk-cube6 {
  73. -webkit-animation-delay: 0.3s;
  74. animation-delay: 0.3s;
  75. }
  76. .load_15 .sk-cube7 {
  77. -webkit-animation-delay: 0s;
  78. animation-delay: 0s;
  79. }
  80. .load_15 .sk-cube8 {
  81. -webkit-animation-delay: 0.1s;
  82. animation-delay: 0.1s;
  83. }
  84. .load_15 .sk-cube9 {
  85. -webkit-animation-delay: 0.2s;
  86. animation-delay: 0.2s;
  87. }
  88. @-webkit-keyframes sk-cubeGridScaleDelay {
  89. 0%,
  90. 70%,
  91. 100% {
  92. -webkit-transform: scale3D(1, 1, 1);
  93. transform: scale3D(1, 1, 1);
  94. }
  95. 35% {
  96. -webkit-transform: scale3D(0, 0, 1);
  97. transform: scale3D(0, 0, 1);
  98. }
  99. }
  100. @keyframes sk-cubeGridScaleDelay {
  101. 0%,
  102. 70%,
  103. 100% {
  104. -webkit-transform: scale3D(1, 1, 1);
  105. transform: scale3D(1, 1, 1);
  106. }
  107. 35% {
  108. -webkit-transform: scale3D(0, 0, 1);
  109. transform: scale3D(0, 0, 1);
  110. }
  111. }
  112. </style>
  113. </head>
  114. <body>
  115. <div id="app">
  116. <div class="loading_card">
  117. <div class="load_15">
  118. <div class="sk-cube sk-cube1"></div>
  119. <div class="sk-cube sk-cube2"></div>
  120. <div class="sk-cube sk-cube3"></div>
  121. <div class="sk-cube sk-cube4"></div>
  122. <div class="sk-cube sk-cube5"></div>
  123. <div class="sk-cube sk-cube6"></div>
  124. <div class="sk-cube sk-cube7"></div>
  125. <div class="sk-cube sk-cube8"></div>
  126. <div class="sk-cube sk-cube9"></div>
  127. </div>
  128. </div>
  129. </div>
  130. <script type="module" src="/src/main.js"></script>
  131. </body>
  132. </html>