1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>报名成功</title>
- <script language="javascript" type="text/javascript">
- // 以下方式定时跳转
- setTimeout("javascript:location.href='javascript:history.go(-1)'", 5000);
- var wait=5;
- (function time(o) {
- o = wait;
- wait--;
- setTimeout(function() {time(o);}, 1000);
- //document.write(o);
- document.getElementById("num").innerHTML = o;
- })();
- </script>
- <style type="text/css">
- *{ margin: 0;
- padding: 0;
- }
- html {
- background: linear-gradient(to top right, white 0%, skyblue 98%, blue 100%);
- font-family: "宋体";
- background-repeat: no-repeat;
- width: 100%;
- height: 100%;
- }
- h2{
- color: white;
- margin-left: 20px;
- margin-top: 15px;
- }
- h4{ color: white;
- margin-left: 20px;
- }
- .a{
- height: 20px;
- width: 95%;
- background: linear-gradient(to bottom, white 25%, gray 100%);
- margin-top: 10px;
- margin-left: 20px;
- }
- .b{margin-top: 20px;}
- </style>
- </head>
- <body>
- <h2>
- 深圳信息职业技术学院校运会成功报名
- </h2>
- <h4>Shenzhen Institute of Information Technology successfully registered for the school sports meeting</h4>
- <div class="a"></div>
- <center class="b">
- <h1>报名成功</h1>
- <p><span id="num">5</span>秒后返回上一级<p>
- </center>
- </body>
- </html>
|