123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <!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="<%= BASE_URL %>favicon.ico"> -->
- <!-- <title><%= webpackConfig.name %></title> -->
- <title></title>
- <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
- <style>
- html,
- body,
- #app {
- height: 100%;
- margin: 0px;
- padding: 0px;
- }
- .bg .top {
- width: 100%;
- height: 114px;
- position: relative;
- top: 0;
- left: 0;
- background: #26a3ff;
- }
- .bg .top>div {
- font-family: '阿里巴巴普惠体MEDIUM';
- width: 100%;
- font-size: 60px;
- color: #fff;
- text-align: center;
- line-height: 114px;
- text-shadow: 4px 5px 8px #26a3ff;
- letter-spacing: 5px;
- }
- .loader {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 100%;
- height: 100%;
- display: flex;
- box-sizing: border-box;
- align-items: center;
- justify-content: center;
- background: rgba(0, 0, 0, 0.4);
- }
- @-webkit-keyframes loading {
- 50% {
- transform: scale(0.4);
- opacity: 0.3;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
- .loading {
- position: relative;
- }
- .loading i {
- display: block;
- width: 15px;
- height: 15px;
- border-radius: 50%;
- position: absolute;
- background: #1890ff;
- }
- .loading i:nth-child(1) {
- top: 25px;
- left: 0;
- -webkit-animation: loading 1s ease 0s infinite;
- }
- .loading i:nth-child(2) {
- top: 17px;
- left: 17px;
- -webkit-animation: loading 1s ease 0.12s infinite;
- }
- .loading i:nth-child(3) {
- top: 0;
- left: 25px;
- -webkit-animation: loading 1s ease 0.24s infinite;
- }
- .loading i:nth-child(4) {
- top: -17px;
- left: 17px;
- -webkit-animation: loading 1s ease 0.36s infinite;
- }
- .loading i:nth-child(5) {
- top: -25px;
- left: 0;
- -webkit-animation: loading 1s ease 0.48s infinite;
- }
- .loading i:nth-child(6) {
- top: -17px;
- left: -17px;
- -webkit-animation: loading 1s ease 0.6s infinite;
- }
- .loading i:nth-child(7) {
- top: 0;
- left: -25px;
- -webkit-animation: loading 1s ease 0.72s infinite;
- }
- .loading i:nth-child(8) {
- top: 17px;
- left: -17px;
- -webkit-animation: loading 1s ease 0.84s infinite;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="bg">
- <div class="top">
- <div>政务服务之窗</div>
- </div>
- </div>
- <div class="loader">
- <div class="loading">
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- </div>
- </div>
- </div>
- </body>
- </html>
|