31 lines
913 B
PHP
31 lines
913 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>2 Seconds Countdown Redirect</title>
|
||
|
<style>
|
||
|
body { text-align: center; }
|
||
|
h1 { font-size: 3em; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1><?php echo $title ?>!,将在 <a id="countdown">2</a> 秒后跳转至<?php echo $right_word ?>页</h1>
|
||
|
|
||
|
<script>
|
||
|
var seconds = 2;
|
||
|
function updateCountdown() {
|
||
|
var countdownElement = document.getElementById('countdown');
|
||
|
countdownElement.textContent = seconds;
|
||
|
seconds--;
|
||
|
if (seconds >= 0) {
|
||
|
setTimeout(updateCountdown, 1000);
|
||
|
} else {
|
||
|
var url = "<?php echo $href_url;?>";
|
||
|
window.location.href = url;
|
||
|
}
|
||
|
}
|
||
|
updateCountdown();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|