jumpurl.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable=no">
  6. <meta name="format-detection" content="telephone=no">
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <title>正在加载中</title>
  9. <style type="text/css">
  10. html,body{
  11. overflow: hidden;
  12. margin: 0;
  13. padding: 0;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .sk-wave {
  18. position: absolute;
  19. left: 50%;
  20. top: 50%;
  21. width: 6em;
  22. height: 4em;
  23. margin: -2rem 0 0 -3em;
  24. text-align: center;
  25. font-size: 1em;
  26. }
  27. .sk-wave .sk-rect {
  28. background-color: #FFB473;
  29. height: 100%;
  30. width: .5em;
  31. display: inline-block;
  32. -webkit-animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
  33. animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
  34. }
  35. .sk-wave .sk-rect-1 {
  36. -webkit-animation-delay: -1.2s;
  37. animation-delay: -1.2s;
  38. }
  39. .sk-wave .sk-rect-2 {
  40. -webkit-animation-delay: -1.1s;
  41. animation-delay: -1.1s;
  42. }
  43. .sk-wave .sk-rect-3 {
  44. -webkit-animation-delay: -1s;
  45. animation-delay: -1s;
  46. }
  47. .sk-wave .sk-rect-4 {
  48. -webkit-animation-delay: -0.9s;
  49. animation-delay: -0.9s;
  50. }
  51. .sk-wave .sk-rect-5 {
  52. -webkit-animation-delay: -0.8s;
  53. animation-delay: -0.8s;
  54. }
  55. @-webkit-keyframes sk-wave-stretch-delay {
  56. 0%, 40%, 100% {
  57. -webkit-transform: scaleY(0.4);
  58. transform: scaleY(0.4);
  59. }
  60. 20% {
  61. -webkit-transform: scaleY(1);
  62. transform: scaleY(1);
  63. }
  64. }
  65. @keyframes sk-wave-stretch-delay {
  66. 0%, 40%, 100% {
  67. -webkit-transform: scaleY(0.4);
  68. transform: scaleY(0.4);
  69. }
  70. 20% {
  71. -webkit-transform: scaleY(1);
  72. transform: scaleY(1);
  73. }
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <div class="sk-wave">
  79. <div class="sk-rect sk-rect-1"></div>
  80. <div class="sk-rect sk-rect-2"></div>
  81. <div class="sk-rect sk-rect-3"></div>
  82. <div class="sk-rect sk-rect-4"></div>
  83. <div class="sk-rect sk-rect-5"></div>
  84. </div>
  85. </body>
  86. </html>
  87. <script type="text/javascript">
  88. var url = '{$jumpUrl}';
  89. window.location.href = url;
  90. </script>