使用jQuery实现图片轮播的简单小程序

下面是用轮播做的简单小轮播,希望宝宝们喜欢!用最简单的代码,做最多的事!

实现点击下方原点和两边按钮,图片变换!

 效果展示:

代码展示: 

html代码与js文件:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>上机4,制作广告图片轮播切换效果</title>
    <link rel="stylesheet" href="./Exercise04.css"/>
</head>
<body>
    <div class="lunbo">
        <!-- pic -->
        <div class="pic">
            <ul>
                <li style="display:block;"><img src="../img/q1.jpg" alt=""></li>
                <li><img src="../img/q2.jpg" alt=""></li>
                <li><img src="../img/q3.jpg" alt=""></li>
                <li><img src="../img/q4.jpg" alt=""></li>
                <li><img src="../img/q5.jpg" alt=""></li>
                <li><img src="../img/q6.jpg" alt=""></li>
            </ul>
        </div>

        <!-- origin -->
        <div class="origin">
            <ul>
                <li style="background:orange">1</li>
                <li>2</li>
                <li>3</li>
                <li>4</li>
                <li>5</li>
                <li style="margin-right:0;">6</li>
            </ul>
        </div>

        <!-- button -->
        <div class="button-left">&lt;</div>
        <div class="button-right">&gt;</div>
        
    </div>
    <script src="../JQpackage/jquery-1.12.4.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            //用来接受下标
            let index = 0;

            //点击左按钮
            $(".button-left").click(function(){
                if(index <= 0){
                    alert("到头了"+index);
                    return;
                }else{
                    index--;
                    Yuan(index);
                }
            });

            //点击右按钮
            $(".button-right").click(function(){
                if(index >= $(".pic>ul>li").length-1){
                    alert("到尾了"+index);
                    return;
                }else{
                    index++;
                    Yuan(index);
                }
            });
                
            //鼠标滑过
            $(".origin>ul>li").each(function(j,element){
                $(element).mouseover(function(){
                    index = j;
                    Yuan(j);
                });
            });

            //循环显示换图片或原点颜色
            function Yuan(a){
                $(".pic>ul>li").each(function(i){
                        $(".origin>ul>li").eq(i).css({"background":"#2C4B4D"});
                        $(this).hide();
                });
                $(".origin>ul>li").eq(a).css({"background":"orange"});
                $(".pic>ul>li").eq(a).show();
            }
        });
    </script>
</body>
</html>

 css文件:

*{
    margin:0;
    padding:0;
}
li{
    list-style-type:none;
}
.lunbo{
    width:655px;
    height:415px;
    background:red;
    position:relative;
}
.pic>ul>li{
    position:absolute;
    display:none;
}
.origin{
    width:230px;
    height:30px;
    position:absolute;
    z-index: 2;
    bottom:5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.origin>ul>li{
    float:left;
    width:30px;
    height:30px;
    background:#2C4B4D;
    text-align:center;
    line-height:30px;
    margin-right:10px;
    border-radius:30px;
    color:#fff;
    cursor:pointer;
}
.button-left{
    position:absolute;
    width:50px;
    height:60px;
    z-index:1;
    font-size:30px;
    text-align:center;
    line-height:60px;
    background:rgba(0,0,0,0.3);
    left:0;
    top:40%;
    font-weight:bold;
    cursor:pointer;
}
.button-right{
    position:absolute;
    width:50px;
    height:60px;
    z-index:1;
    font-size:30px;
    text-align:center;
    line-height:60px;
    background:rgba(0,0,0,0.3);
    right:0;
    top:40%;
    font-weight:bold;
    cursor:pointer;
}

感谢宝宝们的观看!

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值