JavaScript 含有暂停的倒计时

 

<script type="text/javascript" language="javascript">
    var ZT;
    var boolStop = false;
    var maxtime = 2 * 60 * 60;
    LastTime();
    function LastTime() {
        if (maxtime >= 0) {
            minutes = Math.floor(maxtime / 60);
            seconds = Math.floor(maxtime % 60);
            var msg = seconds < 10 ? (minutes + ":0" + seconds) : (minutes + ":" + seconds);
            document.getElementById("ExamTime").innerHTML = msg;
            if (maxtime == 5 * 60)
                alert('注意,还有5分钟!');
            --maxtime;
        }
        else {
            alert("时间到,答题结束!");
        }
        ZT = setTimeout("LastTime()", 1000);

    }
    function TimeStop() {
        clearTimeout(ZT);
        boolStop = true;
        stopTimes();

        document.getElementById("ContinueQustions").setAttribute("style", "width:100%; position:absolute; top:0px; left:0px;  height:100%; display:block;z-index:3; line-height:100%;");
       

    }

    function TimeStart() {
        if (boolStop) {
            LastTime();
            boolStop = false;
            clearTimeout(stopTimer);
            document.getElementById("ContinueQustions").setAttribute("style", "display:none;");
        }

    }
    var stopTimeM = 0;
    var sotoTimeS = 0;
    var stopTimer = null;
    function stopTimes() {
        sotoTimeS++;
        if (sotoTimeS > 59) {
            sotoTimeS = 0;
            stopTimeM++;
        }
        stopTimer = setTimeout("stopTimes()", 1000);
    }
   
   
</script>

<div style=" position:absolute; text-align:right; top:20px; right:0px; width:250px; text-align:center; z-index:2; overflow:hidden;">

 <img οnclick="TimeStop()" style="cursor: pointer" src="picture/btn_stop_exam.gif" alt="暂停考试" title="暂停考试"/>&nbsp;

</div>

<div id="ContinueQustions">
                <img  style=" position:relative; top:50%;" alt="继续考试" title="继续考试" src="picture/btn_continue.gif" οnclick="TimeStart();" />
           </div>

转载于:https://www.cnblogs.com/ybeiying/archive/2012/03/28/2421649.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值