因为手机锁屏是这东西,也想搞个在博客上!
<script type="text/javascript">
// 获取当前日期
const currentDate = new Date();
// 获取今年12月31日的日期
const endOfYear = new Date(currentDate.getFullYear(), 11, 31); // 12月是11,JavaScript中月份从0开始
// 计算当前日期到年底的差异
const timeDiff = endOfYear - currentDate;
// 将时间差转换为天数
const remainingDays = Math.ceil(timeDiff / (1000 * 3600 * 24));
// 输出结果
if (remainingDays <= 0) {
document.write('新的一年已经到来!');
} else {
document.write('距离今年结束还有 ' + remainingDays + ' 天');
}
</script>