bingyu-duanxinwangzhan/message-code/message/success.html

65 lines
2.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<title>注册成功</title>
<link rel="stylesheet" href="./css/swiper.min.css" />
<link rel="stylesheet" href="./css/aos.css" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/media.css" />
</head>
<body>
<!-- 桌面端顶部 -->
<div class="header">
<div class="header-container">
<a href="index.html" class="header-logo" style="padding: 19px 0;">
<img src="./images/logo.svg" alt="" height="32" />
</a>
</div>
</div>
<!-- 移动端顶部 -->
<div class="mHeader">
<a href="index.html" class="header-logo">
<img src="./images/logo.svg" alt="" height="20" />
</a>
</div>
<div class="logindl">
<div class="login-box">
<img src="./images/login-img1.png" alt="">
<div class="login-form">
<img src="./images/success.svg" alt="">
<p class="reg-suc">注册成功</p>
<a href="content.html" class="reg-router"></a>
</div>
</div>
<p class="copy-right">
Copyright @ 2023 上海河滔信息科技有限公司 地址上海市松江区九泾路655号嘉南红塔8号楼805室 <br>
版权所有沪ICP备2023008024号-1
</p>
</div>
<script src="./js/jquery-3.7.1.min.js"></script>
<script src="./layer/layer.js"></script>
<script src="./js/aos.js"></script>
<script src="./js/swiper-bundle.min.js"></script>
<script src="./js/index.js"></script>
<script>
var _time = 3
$('.reg-router').text('立即跳转(3S)')
setInterval(() => {
_time--
if (_time === 0) {
window.open('content.html', '_self')
}
$('.reg-router').text('立即跳转(' + _time + 'S)')
}, 1000);
</script>
</body>
</html>