美文网首页
2019-04-11定时器

2019-04-11定时器

作者: 果冻_4c9b | 来源:发表于2019-04-17 08:31 被阅读0次

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title></title>
    </head>
    <body>
    <script type="text/javascript">
    // 循环没有时间概念,瞬间完成
    // for(var i=1; i<11 ;i++){
    // document.title=i;
    // }
    // 定时器:在一定时间内发生事件
    // 1.setInterval() ---勤劳,不阻止,不结束
    // clearInterval() 懒惰值工作一次 clearTimeout()
    var i = 0;
    var timer = setInterval(function() {
    if (i == 5) {
    //清楚定时器使其停止
    clearInterval(timer);
    }
    document.title = i;
    i++;
    }, 1000)
    </script>
    </body>
    </html>

    使用定时器切换背景图片(setinterval)

    <!DOCTYPE html>
     <html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
            // 循环没有时间概念,瞬间完成
            //          for(var i=1; i<11 ;i++){
            //              document.title=i;
            //          }
            // 定时器:在一定时间内发生事件
            // 1.setInterval()   ---勤劳,不阻止,不结束
            // clearInterval()     
                        // setTimeout()懒惰值工作一次
            var i = 0;
            var timer = setInterval(function() {
                if (i == 5) {
                    clearInterval(timer);
                }
                document.title = i;
                i++;
            }, 1000)
        </script>
          </body>
     </html>
    

    广告的出现消失(setTimeout)

       <!DOCTYPE html>
        <html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            body {
                margin: 0;
                background: #5FB878;
            }
        </style>
    </head>
    <body>
        <img src="img/练习7/1.png" style="position: fixed; bottom:0; right: 0; display: none;">
        <script type="text/javascript">
            var oImg = document.getElementsByTagName('img')[0];
            oImg.timer = setTimeout(function() {
                oImg.style.display = 'block';
                oImg.timer = setTimeout(function() {
                    oImg.style.display = 'none';
                }, 2000)
            }, 2000)
        </script>
      </body>
     </html>

    相关文章

      网友评论

          本文标题:2019-04-11定时器

          本文链接:https://www.haomeiwen.com/subject/opyhwqtx.html