码迷,mamicode.com
首页 > 其他好文 > 详细

限时抢购-倒计时

时间:2017-09-16 22:13:43      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:png   interval   end   tle   title   style   ima   type   image   

<!DOCTYPE HTML>
<html>
<head>
    <meta charset=utf-8"/>
    <title>团购——限时抢</title>
</head>
<body>
<div>
    <div class="time">还剩 <span id="LeftTime"></span></div>
</div>
<script>
    function FreshTime() {
        var endtime = new Date("2017/10/15,12:20:12");//结束时间
        var nowtime = new Date();//当前时间
        var lefttime = parseInt((endtime.getTime() - nowtime.getTime()) / 1000);
        d = parseInt(lefttime / (24 * 3600));
        h = parseInt(lefttime /3600%24);
        m = parseInt(lefttime/60%60);
        s = parseInt(lefttime % 60);

        document.getElementById("LeftTime").innerHTML = d + "" + h + "小时" + m + "" + s + "";
        if (lefttime <= 0) {
            document.getElementById("LeftTime").innerHTML = "团购已结束";
            clearInterval(sh);
        }
    }

    var sh;
    sh = setInterval(function () {
        FreshTime()
    },500);

</script>
</body> </html>

效果图:

技术分享

限时抢购-倒计时

标签:png   interval   end   tle   title   style   ima   type   image   

原文地址:http://www.cnblogs.com/sunxirui00/p/7532582.html

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