首页 > 其他 > 详细

setInterval 定时器的使用

时间:2019-07-08 17:07:11      阅读:118      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>setInterval方法的使用</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            background-color: red;
            position: absolute;
            top:50px;
        }
    </style>
</head>
<body>
<button>点我</button>
<div></div>
<script>
    function $(selector){
        return document.querySelector(selector);
    }
    var num = 0;
    $(button).onclick = function(){
        //开启定时器,占内存
        var Timer = setInterval(function(){
            if (num > 600){
                //停止定时器
                clearInterval(Timer)
            }
            num += 20;
            $(div).style.left = num + px;
        },100);
    };
</script>
</body>
</html>

 

setInterval 定时器的使用

原文:https://www.cnblogs.com/lilyxiaoyy/p/11152353.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!