计时器效果

简单的计时器效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo1-计时器</title>
    <style>
        #box{
            font-size: 30px;
            color:red;
        }
    </style>
</head>
<body>
    <button id="btn">点击自加</button>
    <button id="start">开始</button>
    <button id="stop">停止</button>
    <div id="box">0</div>
    <script>
        var btn=document.querySelector('#btn');
        var box=document.querySelector('#box');
        var start=document.querySelector('#start');
        var stop=document.querySelector('#stop');
        var num=0;
        btn.onclick=function(){
            num++;
            box.innerHTML=num;
        }
        // 延时计时器  1)setTimeout 只执行一次   2) setInterval  持续执行   
        // 写法  setTimeout(函数名/匿名函数,毫秒数)
        //setInterval(函数名/匿名函数,毫秒数)
        
        // 3
        var timer=null;
        console.log(123);

        start.onclick=function(){
            
            clearInterval(timer);

            // 1
            timer=setInterval(function(){
                num++;
                box.innerHTML=num;
            },1000);
        }
        stop.onclick=function(){

            //2
            clearInterval(timer);
        }
    </script>
</body>
</html>

希望可以帮到大家

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值