| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0" />
- <title></title>
- <!-- 优化:vue渲染未完成之前,先加一个css动画 -->
- <style>
- #loadingPage {
- background-color: #dedede;
- font-size: 12px;
- }
- .base {
- height: 9em;
- left: 50%;
- margin: -7.5em;
- padding: 3em;
- position: absolute;
- top: 50%;
- width: 9em;
- transform: rotateX(45deg) rotateZ(45deg);
- transform-style: preserve-3d;
- }
- .cube,
- .cube:after,
- .cube:before {
- content: '';
- float: left;
- height: 3em;
- position: absolute;
- width: 3em;
- }
- /* Top */
- .cube {
- background-color: #06cf68;
- position: relative;
- transform: translateZ(3em);
- transform-style: preserve-3d;
- transition: .25s;
- box-shadow: 13em 13em 1.5em rgba(0, 0, 0, 0.1);
- animation: anim 1s infinite;
- }
- .cube:after {
- background-color: #05a151;
- transform: rotateX(-90deg) translateY(3em);
- transform-origin: 100% 100%;
- }
- .cube:before {
- background-color: #026934;
- transform: rotateY(90deg) translateX(3em);
- transform-origin: 100% 0;
- }
- .cube:nth-child(1) {
- animation-delay: 0.05s;
- }
- .cube:nth-child(2) {
- animation-delay: 0.1s;
- }
- .cube:nth-child(3) {
- animation-delay: 0.15s;
- }
- .cube:nth-child(4) {
- animation-delay: 0.2s;
- }
- .cube:nth-child(5) {
- animation-delay: 0.25s;
- }
- .cube:nth-child(6) {
- animation-delay: 0.3s;
- }
- .cube:nth-child(7) {
- animation-delay: 0.35s;
- }
- .cube:nth-child(8) {
- animation-delay: 0.4s;
- }
- .cube:nth-child(9) {
- animation-delay: 0.45s;
- }
- @keyframes anim {
- 50% {
- transform: translateZ(0.5em);
- }
- }
- </style>
- <script type="module" crossorigin src="./assets/index-94991f0a.js"></script>
- <link rel="stylesheet" href="./assets/index-b7b2ffb7.css">
- </head>
- <body>
- <div id="loadingPage">
- <div class='base'>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- <div class='cube'></div>
- </div>
- </div>
- <div id="app"></div>
-
- </body>
- </html>
|