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

一个焦点轮播图

时间:2018-04-16 23:48:50      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:===   pre   query   jquery   div   oct   border   add   src   

*{
    padding:0;
    margin:0;
}
.box {
    width:600px;
    height:375px;
    overflow:hidden;
    position:relative;
    left:50%;
    top:60px;
    margin-left:-300px;
}
.box:hover {
    cursor:pointer;
}
img {
    width:100%;
    height:100%;
}
img.active {
    position:absolute;
    top:0;
    left:0;
}
.ind {
    width:128px;
    height:30px;
    position:absolute;
    left:50%;
    bottom:30px;
    margin-left: -64px;
}
p {
    float:left;
    width:30px;
    height:30px;
    line-height:30px;
    text-align:center;
    margin-right:2px;
    border-radius:50%;
    background:yellow;
}
p.active {
    background:red;
}

html + js代码如下

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>a website</title>
        <link type = "text/css" rel = "stylesheet" href = "交替轮播.css">
    </head>
    <body>
    <div class = "box">
        <img class = "active" src = "img/0.jpg">
        <img src = "img/1.jpg">
        <img src = "img/2.jpg">
        <img src = "img/3.jpg">
        <div class = "ind"><p class = "active">1</p><p>2</p><p>3</p><p>4</p></div>
    </div>
    </body>
    <script src = "jquery-3.2.1.js"></script>
    <script type = "text/javascript">
        $(function(){
            var n = 0;
            function move(){
            if (n === 4) {
                n = 0
            }
            $("img").eq(n).addClass("active").siblings().removeClass("active");
            $("p").eq(n).addClass("active").siblings().removeClass("active");
            n++;
        }
        timer = setInterval(move,2000);
        $("p").each(function(i,e){
            $(e).click(function(){
                $(this).addClass("active").siblings().removeClass("active");
                $("img").eq(i).addClass("active").siblings().removeClass("active")
            })
        });
        })
    </script>
</html>

 

一个焦点轮播图

标签:===   pre   query   jquery   div   oct   border   add   src   

原文地址:https://www.cnblogs.com/tarantino/p/8859132.html

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