给博客底部添加网站运行时间

249 个字

之前网站就很喜欢给footer添加各种各样的东西,其中之一就是网站运行时间。

代码

在footer.php中找到合适的位置添加代码:

<span id="runtime_span" style="color: #b9b9b9;"></span>
<!--建站时间-->
<script type="text/javascript">
function show_runtime()
{window.setTimeout("show_runtime()",1000);X=new 
Date("1/1/2021 00:00:00");
Y=new Date();T=(Y.getTime()-X.getTime());M=24*60*60*1000;
a=T/M;A=Math.floor(a);b=(a-A)*24;B=Math.floor(b);c=(b-B)*60;C=Math.floor((b-B)*60);D=Math.floor((c-C)*60);
runtime_span.innerHTML="网站已在暴风骤雨中运行: "+A+"天"+B+"小时"+C+"分"+D+"秒"}show_runtime();
</script>

建站时间修改第六行Date里的时间就行了。

效果

划到最底下就可以看到了。

不要转载 | 去热爱自己的生活
Written by Human, Not by AI

最后更新于 2023 年 12 月 7 日