当前位置 主页 > 网站技术 > 代码类 >

    JS实现普通轮播图特效

    栏目:代码类 时间:2020-01-01 18:09

    本文实例为大家分享了JS实现轮播图特效的具体代码,供大家参考,具体内容如下

    知识点

    轮播图思想:

    ① 建立一个全局变量索引,始终标记当前显示图片。
    ② 根据当前图片的数量,动态创建下方的●图片指示器。
    ③ 轮播图的初始状态为第一张图片在中间,剩余所有图片均放在即将显示图片位置。
    ④ 当点击>的时候,当前图片调用动画移动函数进行左移,与此同时新的一张图片调用动画函数移入到div中,而会将下一张展示的图片移动到div右侧。
    ⑤ 需要进行边界判断,如果当前的图片大于图片数量或者小于等于0,重新给索引赋值。
    ⑥ 当点击图片指示器的时候,首先判定点击的与索引的位置关系,然后进行动画移动。
    ⑦ 给div添加定时器,自动移动图片。当鼠标进入div,删除定时器,当鼠标移出div,设置定时器。

    运行效果

    1.自动轮播
    2.点击左右切换图片
    3.点击下方图片指示器切换图片

    代码

    引入MyTools.js库

    1.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <title>Title</title>
     <link rel="stylesheet" href="1.css" rel="external nofollow" >
    </head>
    <body>
    <div >
     <div >
     <div class="box_img"><img src="casual01.jpg" alt=""></div>
     <div class="box_img"><img src="casual02.jpg" alt=""></div>
     <div class="box_img"><img src="casual03.jpg" alt=""></div>
     <div class="box_img"><img src="casual04.jpg" alt=""></div>
     <div class="box_img"><img src="casual05.jpg" alt=""></div>
     </div>
     <div >
     <a href="javascript:;" class="box_control_left"><i><</i></a>
     <a href="javascript:;" class="box_control_right"><i>></i></a>
     <ul>
     </ul>
     </div>
    </div>
    <script src="../JavaScript学习/00MyTools/MyTools.js"></script>
    <script src="1.js"></script>
    </body>
    </html>

    2.css

    *{margin: 0;padding: 0;}
    a{
     color: #999;
     text-decoration: none;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, .4);
    }
    a:hover{
     color: #f8b62b;
    }
    i{
     font-size: 50px;
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    #box{
     height: 482px;
     width: 830px;
     background-color: red;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%,-50%);
     overflow: hidden;
    }
    #box_content{
     height: 100%;
     width: 100%;
     cursor: pointer;
    }
    #box_content img{
     position: absolute;
     vertical-align: top;
     height: 100%;
     width: 100%;
     /*left: 830px;*/
    }
    .box_img{
     width: 100%;
     height: 100%;
     position: absolute;}
    .box_control_right{
     position: absolute;
     right: 0;
    }
    .box_control_left{
     position: absolute;
     left: 0;
    }
    ul{
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     justify-content:space-evenly;
    }
    ul>li{
     list-style: none;
     width: 16px;
     height: 16px;
     background-color: #fff;
     margin: 0 3px;
     border-radius: 50%;
     cursor: pointer;
    }
    ul>li.current{
     background-color: darkorange;
    }