原生js轮播图

<!DOCTYPE html>
<html lang="en">
<head>
    <style type="text/css">
        /*重置样式*/
        *{margin: 0;padding: 0; list-style: none;}
        /*wrap的轮播图和切换按钮样式*/
        .wrap{height: 410px;width: 990px;margin: 100px auto; overflow:hidden;position: relative;}
        .wrap ul{position: absolute;}
        .wrap ul li{height: 410px;}
        .wrap ol{position: absolute;right: 10px;bottom: 10px;}
        .wrap ol li{height: 20px;width: 20px;  background-color:#fff;border: 1px solid #eee; margin-left: 10px;float:left; line-height: 20px; text-align: center;}
        .wrap ol li.active{background-color: #330099; color: #fff; border: 2px solid green;}
    </style>
</head>
<body>
<!-- wrap包裹录播的图片以及可点击跳转的按钮 -->
<div class="wrap" id="wrap">
    <ul id="pic">
        <li><img src="picture/focus_1.png" alt=""></li>
        <li><img src="picture/focus_2.png" alt=""></li>
        <li><img src="picture/focus_3.png" alt=""></li>
        <li><img src="picture/focus_4.png" alt=""></li>

    </ul>
    <ol id="list">
        <li class="active">1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
    </ol>
</div>
<script type="text/javascript">
    window.onload=function(){
        var wrap=document.getElementById('wrap'),
            pic=document.getElementById('pic'),
            list=document.getElementById('list').getElementsByTagName('li'),
            index=0,
            timer=null;

        // 定义并调用自动播放函数
        if(timer){

            clearInterval(timer);
            timer=null;
        }
        timer=setInterval(autoplay,2000);
        // 定义图片切换函数
        function autoplay(){
            index++;
            if(index>=list.length){
                index=0;
            }
            changeoptions(index);


        }

        // 鼠标划过整个容器时停止自动播放
        wrap.onmouseover=function(){

            clearInterval(timer);

        }
        // 鼠标离开整个容器时继续播放至下一张
        wrap.onmouseout=function(){

            timer=setInterval(autoplay,2000);
        }
        // 遍历所有数字导航实现划过切换至对应的图片
        for(var i=0;i<list.length;i++){
            list[i].id=i;
            list[i].onmouseover=function(){
                clearInterval(timer);
                changeoptions(this.id);

            }
        }
        function changeoptions(curindex){
            for(var j=0;j<list.length;j++){
                list[j].className='';
                pic.style.top=0;

            }
            list[curindex].className='active';
            pic.style.top=-curindex*410+'px';
            index=curindex;
        }

    }



</script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值