CINXE.COM
404
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>404</title> <style type="text/css"> .box { width: 1000px; margin-left: auto; margin-right: auto; position: relative; } .sel_btn { padding: 0 18px; /* background: #be0000; */ /* border: 1px #26bbdb solid; border-radius: 3px; */ display: inline-block; text-decoration: none; font-size: 20px; font-weight: bold; line-height: 36px; outline: none; color: #FFFFFF; /* position: absolute; */ left: 75px; bottom: 75px; } .box p{ color: #000; } </style> </head> <body style="text-align: center;"> <div class="box"> <a class="sel_btn" href="https://www.lasa.gov.cn/" target="_self"> <img src="https://www.lasa.gov.cn/lasa/xhtml/images/public/404.jpg"> <!-- <a class="sel_btn" href="https://www.lasa.gov.cn/" target="_self">回到首页</a> --> <p><span id="mysetTimeout"></span>秒后跳转到首页</p> </a> </div> <script type="text/javascript"> (function () { //5s跳转页面 setTimeout(function () { window.top.location.href = "https://www.lasa.gov.cn/"; }, 5000); var tempshijian = 5; function shijian() { //从5s开始倒计时 var I = setInterval(function () { if (tempshijian != 0) { tempshijian--; document.getElementById("mysetTimeout").innerHTML = tempshijian; } }, 1000); } shijian(); })(); </script> </body> </html>