Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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