市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
3.8 KiB

1 day ago
1 day ago
1 day ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>HomilyChart-弘历软件</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta http-equiv="cache-control" content="no-cache">
  9. <meta http-equiv="expires" content="0">
  10. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  11. <meta http-equiv="description" content="This is my page">
  12. <style>
  13. * {
  14. box-sizing: border-box;
  15. }
  16. body {
  17. margin: 0;
  18. padding: 0;
  19. font-family: Arial, sans-serif;
  20. background-color: #f5f5f5;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. height: 100vh;
  25. margin: 0;
  26. }
  27. .container {
  28. max-width: 600px;
  29. margin: 0 auto;
  30. padding: 20px;
  31. background-color: #fff;
  32. border-radius: 5px;
  33. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  34. }
  35. h1 {
  36. text-align: center;
  37. color: #4caf50;
  38. }
  39. p {
  40. font-size: 18px;
  41. line-height: 1.5;
  42. margin: 20px 0;
  43. }
  44. button {
  45. display: block;
  46. margin: 0 auto;
  47. padding: 10px 20px;
  48. background-color: #4caf50;
  49. color: #fff;
  50. border: none;
  51. border-radius: 5px;
  52. font-size: 18px;
  53. cursor: pointer;
  54. }
  55. @media screen and (max-width: 600px) {
  56. .container {
  57. max-width: 100%;
  58. border-radius: 0;
  59. }
  60. }
  61. </style>
  62. <!--
  63. <link rel="stylesheet" type="text/css" href="styles.css">
  64. -->
  65. <script type="text/javascript">
  66. function closew() {
  67. window.location.href = "about:blank";
  68. window.opener = null;
  69. window.open('', '_self');
  70. window.close();
  71. }
  72. function bakcj() {
  73. window.location.href = "https://hc.homilychart.com/hc/homilyjg.asp";
  74. }
  75. </script>
  76. <script type="text/javascript">
  77. function closew() {
  78. window.location.href = "about:blank";
  79. window.opener = null;
  80. window.open('', '_self');
  81. window.close();
  82. }
  83. window.onload = function () {
  84. // 设置倒计时时间(以毫秒为单位)
  85. var countdownTime = 5000; // 5秒
  86. // 显示倒计时
  87. var countdownElement = document.getElementById('countdown');
  88. countdownElement.textContent = Math.ceil(countdownTime / 1000);
  89. // 开始倒计时
  90. setTimeout(function () {
  91. // 在倒计时结束后跳转到目标页面
  92. window.location.href = './hkRegisterSuccess.html';
  93. }, countdownTime);
  94. // 更新倒计时显示
  95. var countdownInterval = setInterval(function () {
  96. countdownTime -= 1000;
  97. countdownElement.textContent = Math.ceil(countdownTime / 1000);
  98. if (countdownTime <= 0) {
  99. clearInterval(countdownInterval);
  100. }
  101. }, 1000);
  102. };
  103. </script>
  104. </head>
  105. <body>
  106. <div class="container">
  107. <h1>报名成功</h1>
  108. <p>恭喜您,课程报名成功!</p>
  109. <p>稍后我们的助教老师会与您取得联系!</p>
  110. <p>在开课之前会发给您听课信息!</p>
  111. <p>我们建议您安装弘历听课平台!</p>
  112. <p>所以本页面将在</p>
  113. <h3><span id="countdown" style="font-size: 23px;color: red"></span>
  114. <font color="red"></font> 后自动跳转到弘历听课平台安装界面
  115. </h3>
  116. <!---->
  117. </div>
  118. </body>
  119. </html>