http://api.holytreasure.top/timeday.php
http://api.holytreasure.space/timeday.php
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>国庆节倒计时</title>
<style>
body { font-family: Arial, sans-serif; }
.container { margin: 50px auto; width: 80%; text-align: center; }
</style>
</head>
<body>
<div class="container">
<h1>国庆节倒计时</h1>
<p id="countdown">正在加载...</p>
<p id="anniversary">正在加载...</p>
</div>
<script>
function fetchCountdown() {
fetch('http://api.holytreasure.top/timeday.php')
.then(response => response.json())
.then(data => {
const nationalDayData = data.data.national_day;
document.getElementById('countdown').textContent = `距离国庆节还有 ${nationalDayData.days_until} 天`;
document.getElementById('anniversary').textContent = `今年是建国 ${nationalDayData.years_since} 周年`;
})
.catch(error => {
console.error('Error fetching countdown:', error);
document.getElementById('countdown').textContent = '获取倒计时失败';
document.getElementById('anniversary').textContent = '获取周年数失败';
});
}
// 在页面加载完成后立即获取数据
window.addEventListener('load', fetchCountdown);
</script>
</body>
</html>