js 图片无缝循环

<html>
<head>
<title>Js图片无缝滚动</title>
<style type="text/css">
body{
    background:gray;
}
#wrap{
    width:810px;
    height:200px;
    border:1px solid black;
    position:relative;
    left:50%;
    top:50%;
    margin-left:-410px;
    margin-top:-250px;
    background:#F5E0E3;
    overflow:hidden;
}
#wrap ul{
    margin:0px;
    padding:0px;
    position:absolute;
    top:0px;
    left:0px;
}
#wrap ul li{
    list-style:none;
    float:left;
    margin:5px 10px;
}
#wrap ul li img{
    width:250px;
    height:180px;
    cursor:pointer;
}
.direction{
    width:104px;
    margin:50px auto;
}
.direction img{
    border:1px dotted pink;
    cursor:pointer;
}
.active{
    border:2px solid gray;
}
</style>
<script type="text/javascript">
window.onload = function(){
    var ul = document.getElementById("wrap").getElementsByTagName("ul")[0];
    var lis = ul.getElementsByTagName("li");
    var btn1 = document.getElementById("button1");
    var btn2 = document.getElementById("button2");
    var imgs = ul.getElementsByTagName("img");
    var speed = 3;
    var time = null;
    ul.innerHTML += ul.innerHTML;
    ul.style.width = (lis[0].offsetWidth+20)*lis.length + "px";
    time = setInterval(function(){
        ul.style.left = ul.offsetLeft - speed + "px";
        if(ul.offsetLeft <= -ul.offsetWidth/2){
            ul.style.left ="0px";
        }else if(ul.offsetLeft >=0){
            ul.style.left = -ul.offsetWidth/2 + "px";
        }
    },30);
    btn1.onmouseover = function(){
        speed = 3;
    }
    btn2.onmouseover = function(){
        speed = -3;
        }
    for(var i in imgs){
        imgs[i].onmouseover = function(){
            clearInterval(time);
            for(var i = 0;i<imgs.length;i++){
                    imgs[i].className = "none";
                }
            this.className = "active";
        }
        imgs[i].onmouseout = function(){
            time = setInterval(function(){
                ul.style.left = ul.offsetLeft - speed + "px";
                if(ul.offsetLeft <= -ul.offsetWidth/2){
                    ul.style.left ="0px";
                }else if(ul.offsetLeft >=0){
                    ul.style.left = -ul.offsetWidth/2 + "px";
                }
            },30);
            for(var i = 0;i<imgs.length;i++){
                imgs[i].className = "none";
            }
        }
    }
}
</script>
</head>
<body>
    <div class="direction"><img src="/jscss/demoimg/201204/left.png" alt="" id="button1"/><img src="/jscss/demoimg/201204/right.png" alt="" id="button2"/></div>
    <div id="wrap">
        <ul>
            <li><img src="/jscss/demoimg/wall1.jpg" alt="pic one" /></li>
            <li><img src="/jscss/demoimg/wall2.jpg" alt="pic two" /></li>
            <li><img src="/jscss/demoimg/wall3.jpg" alt="pic three" /></li>
            <li><img src="/jscss/demoimg/wall4.jpg" alt="pic four" /></li>
        </ul>
    </div>
</body>
</html>

 

转载于:https://www.cnblogs.com/huntaheart/p/3875943.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值