|
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <meta name="viewport" id="viewport"
- content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-touch-fullscreen" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <meta charset="UTF-8">
- <title></title>
- <style>
- .header_s {
- z-index: 210;
- width: 100%;
- height: 48px;
- line-height: 48px;
- background-color: rgb(105, 118, 184);
- text-align: center;
- color: rgb(255, 255, 255);
- position: fixed;
- top: 0;
- left: 0;
- font-size: 0.88em;
- font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
- }
-
- .header_middle {
- display: inline-block;
- line-height: 50px;
- font-size: 1.1em;
- width: 170px;
- }
-
- .upgrade {
- background: url("/public/images/global/upgradePic.png") no-repeat;
- width: 100%;
- height: 116px;
- background-size: 118px 116px;
- margin-top: 150px;
- /* margin-left: 30%;*/
- position: relative;
- background-position: center;
- }
-
- .showMsg {
- width: 100%;
- text-align: center;
- font-size: 1em;
- padding-top: 20px;
- font-weight: bold;
- font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
- }
- </style>
- </head>
- <body>
-
- <!--Header-->
- <div class="header_s">
- <div class="header_middle">
- <span>友情提示</span>
- </div>
- </div>
- <div class="upgrade"></div>
- <div class="showMsg">
- <div>对不起,我把页面弄丢了!</div>
- <div style="color: #888888;font-size: 12px;margin-top: 5px;"><a id='time' >3</a>秒后将跳回首页</div>
- </div>
- <script type="text/javascript">
- var time = 3;
- function setTime() {
- document.getElementById('time').innerHTML = time;
- time = time - 1;
- if (time <= 0) {
- window.location.href = '/';
- }
- setTimeout('setTime(time)', 1000);
- }
- setTime();
- </script>
- </body>
- </html>
|