47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Redirecting...</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f0f0f0;
|
|
transition: background-color 1s ease;
|
|
}
|
|
.message {
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 1.5em;
|
|
margin: 0.5em 0;
|
|
}
|
|
p {
|
|
font-size: 1em;
|
|
margin: 0.5em 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="message">
|
|
<h1>正在重定向...</h1>
|
|
<p>请稍候,正在将您转向广告页面。</p>
|
|
</div>
|
|
|
|
<script>
|
|
document.body.style.backgroundColor = "#fff";
|
|
|
|
setTimeout(() => {
|
|
window.location.href = "ad.pdf";
|
|
}, 2000);
|
|
</script>
|
|
</body>
|
|
</html>
|