2024-07-01
美图鉴赏
00
2024-06-30
老年痴呆
00

鲁迅没能救中国,胡友平能吗?

——老狗关于胡友平事件的一些感想

事件简介

2024年6月24日16时左右,在苏州高新园区塔园路新地中心公交车站,一对日本母子在等候日本人学校校车时突遇一持刀歹徒袭击,担任乘务员的胡友平在袭击发生时试图阻止歹徒行凶,遭凶徒连捅数刀,最终伤重不治身亡。

6月27日,苏州市见义勇为称号评定工作小组提请苏州市政府,追授市民胡友平“苏州市见义勇为模范”称号。

6月28日,日本驻华大使馆降半旗向苏州离世中国女子致哀。

2024-06-29
美图鉴赏
00
2024-06-28
美图鉴赏
00
2024-06-27
藏龙卧虎
00

提示:以下代码拷贝到本地,填入新建的 .html 文件,使用浏览器打开即可预览效果。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Countdown to Midnight</title> <style> #countdown { font-size: 4em; color: #333; text-align: center; } </style> </head> <body> <div id="countdown">倒计时:00:00:00</div> <script> function updateCountdown() { // 获取当前时间 const now = new Date(); // 获取明天00:00的时间 const tomorrow = new Date(); tomorrow.setHours(24, 0, 0, 0); // 计算时间差(毫秒) const timeDifference = tomorrow - now; // 计算剩余的小时、分钟和秒 const hours = Math.floor((timeDifference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((timeDifference % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((timeDifference % (1000 * 60)) / 1000); // 格式化时间 const formattedHours = hours.toString().padStart(2, '0'); const formattedMinutes = minutes.toString().padStart(2, '0'); const formattedSeconds = seconds.toString().padStart(2, '0'); // 更新倒计时显示 document.getElementById('countdown').textContent = `DLC解锁倒计时:${formattedHours}:${formattedMinutes}:${formattedSeconds}`; } // 每秒更新一次倒计时 setInterval(updateCountdown, 1000); // 初次调用,避免页面加载时的延迟 updateCountdown(); </script> </body> </html>