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

无缝滚动代码

时间:2014-12-26 16:08:28      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

自学js练手----无缝滚动

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
    *{
        margin: 0;
        padding: 0;
    }
    #div01{
        width: 500px;
        height: 100px;
        background: red;
        position: relative;
        left: 500px;
        top: 100px;
        overflow: hidden;
    }
    #div01 ul{
        position: absolute;
        left: 0;
        top: 0;
    }
    #div01 ul li{
        float: left;
        list-style: none;
        width: 100px;
        height: 100px;
        cursor: pointer;
    }
    </style>
    <script type="text/javascript">

    window.onload=function(){
         var oDiv=document.getElementById("div01");
         var oUl=document.getElementById("ul0");
         var oLi=document.getElementsByTagName("li");
         var speed=2;
        oUl.innerHTML=oUl.innerHTML+oUl.innerHTML;

        function move(){
            if(oUl.offsetLeft<-oUl.offsetWidth/2){
                 oUl.style.left=0;
             }
            if(oUl.offsetLeft>0){
                 oUl.style.left=-oUl.offsetWidth/2+"px";
             }
            oUl.style.left=oUl.offsetLeft+speed+"px"
        }
        oUl.style.width=oLi[1].offsetWidth*oLi.length+"px";
        var mytimer=setInterval(move,30);
        oDiv.onmousemove=function(){
            clearInterval(mytimer);
        }
        oDiv.onmouseleave=function(){
            mytimer=setInterval(move, 30);
        };
        document.getElementsByTagName("a")[0].onclick=function(){
            speed=-2;
        };
        document.getElementsByTagName("a")[1].onclick=function(){
            speed=2;
        };
    }
    </script>
</head>
<body>
    <a href="javascript:;"> 向左走</a>
    <a href="javascript:;"> 向右走</a>
    <div id="div01">
        <ul id="ul0">
            <li><img src="images/1.jpg"></li>
            <li><img src="images/2.jpg"></li>
            <li><img src="images/3.jpg"></li>
            <li><img src="images/4.jpg"></li>
            <li><img src="images/5.jpg"></li>
        </ul>
    </div>
</body>
</html>

 

图片如下:

技术分享

技术分享

技术分享

技术分享

技术分享

 

无缝滚动代码

标签:

原文地址:http://www.cnblogs.com/web-leader/p/4186769.html

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