如果你使用的本博客使用的主题,在后台主题设置-底部设置-网站底部自定义信息(如备案号支持HTML代码)
处添加以下代码,使用别的主题请自行了解将代码添加到何处,效果请看本页面底部信息显示。
<span id="runtime_span" style="color: #9b51e0;font-weight: bold"></span> <script type="text/javascript"> function show_runtime() { const webstar = new Date("5/20/2022"); const webnow = new Date(); const dotime = webnow.getTime() - webstar.getTime(); const days = Math.floor(dotime / (1000 * 60 * 60 * 24)); const hours = Math.floor((dotime % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((dotime % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((dotime % (1000 * 60)) / 1000); document.getElementById("runtime_span").innerHTML = `本站已稳定运行了 ${days}天 ${hours}小时 ${minutes}分 ${seconds}秒`; } // 更新运行时间,每秒刷新一次 setInterval(show_runtime, 1000); show_runtime(); </script>