12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable=no">
- <meta name="format-detection" content="telephone=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <title>正在加载中</title>
- <style type="text/css">
- html,body{
- overflow: hidden;
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- }
-
- .sk-wave {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 6em;
- height: 4em;
- margin: -2rem 0 0 -3em;
- text-align: center;
- font-size: 1em;
- }
- .sk-wave .sk-rect {
- background-color: #FFB473;
- height: 100%;
- width: .5em;
- display: inline-block;
- -webkit-animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
- animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
- }
- .sk-wave .sk-rect-1 {
- -webkit-animation-delay: -1.2s;
- animation-delay: -1.2s;
- }
- .sk-wave .sk-rect-2 {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
- }
- .sk-wave .sk-rect-3 {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
- }
- .sk-wave .sk-rect-4 {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
- }
- .sk-wave .sk-rect-5 {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
- }
- @-webkit-keyframes sk-wave-stretch-delay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- @keyframes sk-wave-stretch-delay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
- }
- </style>
- </head>
- <body>
- <div class="sk-wave">
- <div class="sk-rect sk-rect-1"></div>
- <div class="sk-rect sk-rect-2"></div>
- <div class="sk-rect sk-rect-3"></div>
- <div class="sk-rect sk-rect-4"></div>
- <div class="sk-rect sk-rect-5"></div>
- </div>
- </body>
- </html>
- <script type="text/javascript">
- var url = '{$jumpUrl}';
- window.location.href = url;
- </script>
|