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

简单的setInterval应用

时间:2017-01-15 00:17:37      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:body   onload   document   url   jpg   nts   timer   [1]   cli   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        #div1{
            width:500px;
            height: 500px;
            margin-top: 20px;
        }
    </style>
    <script>
        window.onload=function(){
            var aBtn=document.getElementsByTagName(‘input‘);
            var arrUrl=[‘images/img1.jpeg‘,‘images/img2.jpeg‘,‘images/img3.jpg‘,‘images/img4.jpeg‘,‘images/img5.jpg‘]
            var num=0;
            var timer=null;
            var oDiv=document.getElementById(‘div1‘);
            aBtn[0].onclick=function(){
                clearInterval(timer);
                timer=setInterval(function(){
                    oDiv.style.background=‘url(‘+arrUrl[num]+‘)‘;
                    num++;
                    num%=arrUrl.length;
                },800);
            }
            aBtn[1].onclick=function(){
                clearInterval(timer);
            }
        }
    </script>
</head>
<body>
   <input type="button" value="换背景">
   <input type="button" value="停">
   <div id="div1">hello world</div>
</body>
</html>

  

简单的setInterval应用

标签:body   onload   document   url   jpg   nts   timer   [1]   cli   

原文地址:http://www.cnblogs.com/lili-work/p/6286418.html

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