js实现轮播图自动切换

 更新时间:2022年07月12日 08:40:53   作者:聪明的加菲猫  
这篇文章主要为大家详细介绍了js实现轮播图自动切换,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了js实现轮播图自动切换的具体代码,供大家参考,具体内容如下

先看效果图

第一种

 //点击按钮,序号变化
showIdx++;
if (showIdx == imgArr.length) {
                showIdx = 0;
 }
 
//所有盒子左移动
for (let i = 0; i <items.length; i++) {
    items[i].style.left = parseFloat(items[i].style.left) - loopbox.offsetWidth + "px";
 
 }
//冗余容器从页面中删除
 
//当冗余容器从页面中移除后,为了保证结构想对应,所以呀item中数组也要把这个容器删除
let deleteBox = items.shift();
// console.log(items);
deleteBox.remove();
//在用户看不到的内存中,变更【被从这个页面删除的元素的位置
deleteBox.style.left = "900px";
wrapper.appendChild(deleteBox);
items.push(deleteBox);
//把容器从小添加至压面后,容器加载的图片在当前的下一站
// 第七步 把容器重新添加至页面后,容器加载的图片要是当前这张的下一张
if (showIdx == imgArr.length - 1) {
   deleteBox.innerHTML = `<img src=${imgArr[0]}>`;
   } else {
      deleteBox.innerHTML = `<img src=${imgArr[showIdx + 1]}>`;
}

第二种,图片切换,css代码

html,
body,
ul,
li {
    margin: 0;
    padding: 0;
}
 
a {
    text-decoration: none;
}
 
.loopbox {
    width: 1226px;
    height: 460px;
    background: #030;
    position: relative;
    overflow: hidden;
}
 
.box {
    width: 100%;
    height: 100%;
    float: left;
    transition: all .3s;
    position: absolute;
    left: 0;
    /* overflow: hidden; */
}
.box.notran{
    transition: none;
}
 
.box-item {
    /* width: 100%; */
    width: 1226px;
    height: 100%;
    float: left;
    background: #f1f1f1;
    text-align: center;
    font-size: 24px;
    line-height: 100px;
    /* display: none; */
    /* transition: all .3s; */
}
 
.box-item img {
    width: 100%;
    height: 100%;
    /* 图片适应 */
    object-fit: cover;
}
 
.arrow {
    width: 60px;
    line-height: 30px;
    background: #f00;
    text-align: center;
    color: #f1f1f1;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -15px;
    border-radius: 15px;
}
 
.arrow:hover {
    background: #f60;
}
 
.arrow.arrow-right {
    left: auto;
    right: 10px;
}
 
.page {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10px;
}
 
.page li {
    display: inline-block;
    width: 80px;
    height: 8px;
    border-radius: 4px;
    background: #000;
}
/* .page li:first-child {
    background: #f90;
} */
 
.page li:hover {
    background: #f60;
}
 
.page li.current {
    background: #f90;
}
 
.side-qq {
    width: 100px;
    height: 100px;
    background: #f00;
    /* position: fixed; */
    position: absolute;
    right: 10px;
    top: 450px;
}
 
.navbar {
    width: 100%;
    background: #ccc;
    text-align: center;
}
 
.navbar.fixed {
    position: fixed;
    left: 0;
    top: 0;
}
 
.nav {
    height: 21px;
}

js

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./css/index.css">
</head>
<body>
 <!-- 1.分析页面结构 -->
 <div class="loopbox">
    <div id="box" class="box">
        <div class="box-item curr"><img src="images/1.webp"></div>
        <div class="box-item"><img src="images/2.webp"></div>
        <div class="box-item"><img src="images/3.webp"></div>
        <div class="box-item"><img src="images/4.webp"></div>
    </div>
    <a class="arrow arrow-left" href="javascript:;">左</a>
    <a class="arrow arrow-right" href="javascript:;">右</a>
    <ul id="page" class="page">
        <li class="current"></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
</div>
<script>
  // 1.5.初始化页面,保证所有的图片先拍成一排
  let items = document.querySelectorAll(".box-item");
  let lis = document.querySelectorAll(".page li");
  let leftBtn=document.querySelector(".arrow-left")
        let box = document.querySelector(".box");
        let loopbox = document.querySelector(".loopbox");
        box.style.width = items.length * loopbox.offsetWidth + "px";
        box.style.left = 0+"px";
        // 2.分析功能入口
        let rightBtn = document.querySelector(".arrow-right");
        
        let showIdx = 0;
        rightBtn.onclick = function (){
            items[showIdx].classList.remove("curr");
            lis[showIdx].classList.remove("current");
            showIdx ++;
            if(showIdx == 4){
                showIdx = 0;
            }
            items[showIdx].classList.add("curr");
            lis[showIdx].classList.add("current");
            box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px";
            for(let i=0;i<lis.length;i++){
 
                 lis[i].onclick =function(){
 
                items[showIdx].classList.remove("curr");
                lis[showIdx].classList.remove("current");
                showIdx=i;
                items[showIdx].classList.add("curr");
                lis[showIdx].classList.add("current");
                 }
            }
            leftBtn.onclick = function(){
        //第一张 消失(取消类名)
           items[showIdx].classList.remove("curr");
           lis[showIdx].classList.remove("current");
           showIdx --;
           //预知判断
           if(showIdx == -1){
               //点击之后,点击之前意味着已经在加,需要归零
               showIdx = 3;
           }
           items[showIdx].classList.add("curr");
           lis[showIdx].classList.add("current");
           box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px";
        // 第二张 出现(添加类名)showIdx+1
        };
        for(let j=0;j<lis.length;j++){
            lis[j].onclick  = function(){
                items[showIdx].classList.remove("curr");
                lis[showIdx].classList.remove("current");  
                //选好变为点击序号对应结构
                showIdx=j;
                items[showIdx].classList.add("curr");
                lis[showIdx].classList.add("current");
            }
        
            }
 
 
        }
        function time(){
    items[showIdx].classList.remove("curr");
            lis[showIdx].classList.remove("current");
            showIdx ++;
            if(showIdx == 4){
                showIdx = 0;
            }
            items[showIdx].classList.add("curr");
            lis[showIdx].classList.add("current");
            box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px";
            
            }
            for(let i=0;i<lis.length;i++){
 
            lis[i].onclick =function(){
 
        items[showIdx].classList.remove("curr");
        lis[showIdx].classList.remove("current");
        showIdx=i;
        items[showIdx].classList.add("curr");
        lis[showIdx].classList.add("current");
}
        }
     setInterval(time,3000)   
    
 
</script>
</body>
</html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • JavaScript中Number.isNaN 和 isNaN 的区别详解

    JavaScript中Number.isNaN 和 isNaN 的区别详解

    本文和大家分享一个前几天写代码踩的坑,笔者在业务逻辑中需要对一个值进行NaN的判断,由于笔者的不严谨,使用了isNaN,从而引起Bug,也正是因为这个,笔者才知道了isNaN和Number.isNaN的区别,所以本文就和大家聊聊它们的区别
    2023-09-09
  • 一次记住JavaScript的6个正则表达式方法

    一次记住JavaScript的6个正则表达式方法

    这篇文章主要介绍了一次记住JavaScript的6个正则表达式方法,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2018-02-02
  • JS基于正则表达式的替换操作(replace)用法示例

    JS基于正则表达式的替换操作(replace)用法示例

    这篇文章主要介绍了JS基于正则表达式的替换操作(replace)用法,结合具体实例形式详细分析了replace函数的语法、参数及具体使用技巧,需要的朋友可以参考下
    2017-04-04
  • 微信小程序实现播放音频功能

    微信小程序实现播放音频功能

    这篇文章主要为大家详细介绍了微信小程序实现播放音频功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-07-07
  • javascript基本常用排序算法解析

    javascript基本常用排序算法解析

    这篇文章主要为大家详细介绍了javascript基本常用排序算法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-09-09
  • js实现左右两侧浮动广告

    js实现左右两侧浮动广告

    这篇文章主要为大家详细介绍了js实现左右两侧浮动广告,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • 微信小程序实现星星评分效果

    微信小程序实现星星评分效果

    这篇文章主要为大家详细介绍了微信小程序实现星星评分效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-11-11
  • javascript基于DOM实现权限选择实例分析

    javascript基于DOM实现权限选择实例分析

    这篇文章主要介绍了javascript基于DOM实现权限选择的方法,实例分析了javascript针对页面元素的动态选择与添加删除等操作的相关技巧,非常具有实用价值,需要的朋友可以参考下
    2015-05-05
  • webpack配置打包后图片路径出错的解决

    webpack配置打包后图片路径出错的解决

    本篇文章主要介绍了webpack配置打包后图片路径出错的解决,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-04-04
  • 一文教会你从零开始画echarts地图

    一文教会你从零开始画echarts地图

    ECharts是一个使用JavaScript实现的开源可视化库,涵盖各行业图表,满足各种需求,下面这篇文章主要给大家介绍了如何从零开始画echarts地图的相关资料,需要的朋友可以参考下
    2022-04-04

最新评论