Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

500.html 2.3 KiB

3 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta name="viewport" id="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  5. <meta name="apple-mobile-web-app-capable" content="yes">
  6. <meta name="apple-touch-fullscreen" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <meta name="format-detection" content="telephone=no">
  9. <meta charset="UTF-8">
  10. <title></title>
  11. <style>
  12. .header_s {
  13. z-index: 210;
  14. width: 100%;
  15. height: 48px;
  16. line-height: 48px;
  17. background-color: rgb(105, 118, 184);
  18. text-align: center;
  19. color: rgb(255, 255, 255);
  20. position: fixed;
  21. top: 0;
  22. left: 0;
  23. font-size: 0.88em;
  24. font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
  25. }
  26. .header_middle {
  27. display: inline-block;
  28. line-height: 50px;
  29. font-size: 1.1em;
  30. width: 170px;
  31. }
  32. .upgrade{
  33. background: url("/public/images/global/upgradePic.png") no-repeat;
  34. width: 100%;
  35. height: 116px;
  36. background-size: 118px 116px;
  37. margin-top: 150px;
  38. /* margin-left: 30%;*/
  39. position: relative;
  40. background-position: center;
  41. }
  42. .showMsg{
  43. width: 100%;
  44. text-align: center;
  45. font-size: 1em;
  46. padding-top: 20px;
  47. font-weight: bold;
  48. font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <!--Header-->
  54. <div class="header_s">
  55. <div class="header_middle">
  56. <span>友情提示</span>
  57. </div>
  58. </div>
  59. <div class="upgrade"></div>
  60. <div class="showMsg">
  61. <div >系统繁忙!请稍后再试!</div>
  62. <div style="color: #888888;font-size: 12px;margin-top: 5px;"><a id='time' >3</a>秒后将跳回首页</div>
  63. </div>
  64. <script type="text/javascript">
  65. var time = 3;
  66. function setTime() {
  67. document.getElementById('time').innerHTML = time;
  68. time = time - 1;
  69. if (time <= 0) {
  70. window.location.href = '/';
  71. }
  72. setTimeout('setTime(time)', 1000);
  73. }
  74. setTime();
  75. </script>
  76. </body>
  77. </html>