前言
你 是不是在别人的网站底部看见了类似以下的文字
可是呢自己又不会添加,如果是这样的话那么请继续看下去。
正片
我这边直接帮大家写了一个
<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换成你自己的成立时间~
总结
这个东西没啥用,但是很好玩哈哈哈!