码迷,mamicode.com
首页 > Web开发 > 详细

网页显示运行时间js特效

时间:2021-07-19 16:48:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:var   lang   interval   turn   自己   timestamp   博客   int   mat   

网页显示运行时间js特效

这个功能很常见,也很有用,可以增加自己网站的稳定性,让访客明白网站的运行时长,而更加相信网站的内容。

  1. 首先定义一个标签来存放时间
<p id="run_time" style="color: rgb(0,181,173);font-size: large;font-weight: bold">
  1. 加入js代码
<script>
    function secondToDate(second) {
        if (!second) {
            return 0;
        }
        var time = new Array(0, 0, 0, 0, 0);
        if (second >= 365 * 24 * 3600) {
            time[0] = parseInt(second / (365 * 24 * 3600));
            second %= 365 * 24 * 3600;
        }
        if (second >= 24 * 3600) {
            time[1] = parseInt(second / (24 * 3600));
            second %= 24 * 3600;
        }
        if (second >= 3600) {
            time[2] = parseInt(second / 3600);
            second %= 3600;
        }
        if (second >= 60) {
            time[3] = parseInt(second / 60);
            second %= 60;
        }
        if (second > 0) {
            time[4] = second;
        }
        return time;
    }
    function setTime() {
        /*此处为网站的创建时间*/
        var create_time = Math.round(new Date(Date.UTC(2019, 07, 05, 18, 01, 01)).getTime() / 1000);
        var timestamp = Math.round((new Date().getTime() + 8 * 60 * 60 * 1000) / 1000);
        currentTime = secondToDate((timestamp - create_time));
        currentTimeHtml = ‘该博客网已苟活:‘ + currentTime[0] + ‘年‘ + currentTime[1] + ‘天‘
            + currentTime[2] + ‘时‘ + currentTime[3] + ‘分‘ + currentTime[4]
            + ‘秒‘;
        document.getElementById("run_time").innerHTML = currentTimeHtml;
    }
    setInterval(setTime, 1000);
</script>
注:上述js需要自己去修改网站的创建时间,和内容,代码中有注释,直接修改即可

网页显示运行时间js特效

标签:var   lang   interval   turn   自己   timestamp   博客   int   mat   

原文地址:https://www.cnblogs.com/zq98/p/15027906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!