Mobile wallpaper 1
168 字
1 分钟
怎么给网站底部添加网站的运行时间
2025-08-15
浏览量:加载中...访问次数:加载中...

前言#

你 是不是在别人的网站底部看见了类似以下的文字

可是呢自己又不会添加,如果是这样的话那么请继续看下去。

正片#

我这边直接帮大家写了一个

<div style="display:flex;align-items:center;padding:3px">
<i class="fa fa-exclamation-circle text-red-600" style="animation:pulse 2s infinite;margin-right:4px"></i>
<span style="margin-right:4px">本站已宕机运行:</span>
<span id="t" style="color:black"></span>
</div>
<script>
let t = new Date() - Date.parse('2020-01-01'),
s = Math.floor(t/1000)%60,
d = Math.floor(t/86400000)%30,
m = Math.floor(t/2592000000)%12,
y = Math.floor(t/31536000000);
setInterval(()=>{
s = (s+1)%60;
document.getElementById('t').textContent = `${y}年${m}月${d}日${s}秒`;
},1000);
document.getElementById('t').textContent = `${y}年${m}月${d}日${s}秒`;
</script>
<style>
@keyframes pulse {0%,100%{opacity:1}50%{opacity:.5}}
</style>
然后把2020-01-01换成你自己的成立时间~#

总结#

这个东西没啥用,但是很好玩哈哈哈!

怎么给网站底部添加网站的运行时间
https://blog.tnto.fun/posts/03/
作者
TNTAWA
发布于
2025-08-15
许可协议
CC BY-NC-SA 4.0