在网站页脚添加已运行时间

在footer.php中合适位置添加以下代码,效果如本站。

<!--站点运行时间-->
<span id="runtime_span" style="color: #8224e3;"></span>
<script type="text/javascript">function show_runtime(){window.setTimeout("show_runtime()",1000);X=new
Date("10/24/2021 5:22: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>

以本站使用的B2主题为例

<div class="footer-bottom-right">
<span id="runtime_span" style="color: #000000;"></span>
<script type="text/javascript">function show_runtime(){window.setTimeout("show_runtime()",1000);X=new
Date("06/01/2022 5:22: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>
</div>

顺便把底部公安徽标长宽改为18px

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
搜索