123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="renderer" content="webkit">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <link rel="icon" href="/IBMS.png">
- <title>IBMS楼宇集成数据大屏</title>
- <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
- <style>
- html,
- body,
- #app {
- height: 100%;
- margin: 0px;
- padding: 0px;
- overflow-y: auto;
- }
- #app::-webkit-scrollbar {
- display: none;
- scrollbar-width: none;
- scrollbar-color: transparent transparent;
- }
- .chromeframe {
- margin: 0.2em 0;
- background: #ccc;
- color: #000;
- padding: 0.2em 0;
- }
- .loading_card {
- width: 100%;
- height: 100vh;
- background-color: #0f2a42;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .load_15 {
- width: 100px;
- height: 100px;
- display: inline-block;
- }
- .load_15 .sk-cube {
- width: 33%;
- height: 33%;
- background-color: #07aae7;
- float: left;
- -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
- animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
- }
- .load_15 .sk-cube1 {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
- }
- .load_15 .sk-cube2 {
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
- }
- .load_15 .sk-cube3 {
- -webkit-animation-delay: 0.4s;
- animation-delay: 0.4s;
- }
- .load_15 .sk-cube4 {
- -webkit-animation-delay: 0.1s;
- animation-delay: 0.1s;
- }
- .load_15 .sk-cube5 {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
- }
- .load_15 .sk-cube6 {
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
- }
- .load_15 .sk-cube7 {
- -webkit-animation-delay: 0s;
- animation-delay: 0s;
- }
- .load_15 .sk-cube8 {
- -webkit-animation-delay: 0.1s;
- animation-delay: 0.1s;
- }
- .load_15 .sk-cube9 {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
- }
- @-webkit-keyframes sk-cubeGridScaleDelay {
- 0%,
- 70%,
- 100% {
- -webkit-transform: scale3D(1, 1, 1);
- transform: scale3D(1, 1, 1);
- }
- 35% {
- -webkit-transform: scale3D(0, 0, 1);
- transform: scale3D(0, 0, 1);
- }
- }
- @keyframes sk-cubeGridScaleDelay {
- 0%,
- 70%,
- 100% {
- -webkit-transform: scale3D(1, 1, 1);
- transform: scale3D(1, 1, 1);
- }
- 35% {
- -webkit-transform: scale3D(0, 0, 1);
- transform: scale3D(0, 0, 1);
- }
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="loading_card">
- <div class="load_15">
- <div class="sk-cube sk-cube1"></div>
- <div class="sk-cube sk-cube2"></div>
- <div class="sk-cube sk-cube3"></div>
- <div class="sk-cube sk-cube4"></div>
- <div class="sk-cube sk-cube5"></div>
- <div class="sk-cube sk-cube6"></div>
- <div class="sk-cube sk-cube7"></div>
- <div class="sk-cube sk-cube8"></div>
- <div class="sk-cube sk-cube9"></div>
- </div>
- </div>
- </div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|