纯js实现轮播图,详解(简单,无缝,小圆点,左右手动切换,自动轮动)

无论用什么语言开发可视化界面,都有一个叫轮播图的东西。我们现在有个需求,如图:

slideshow1.PNG

左右切换按钮默认为隐藏,当鼠标进入图片时,左右切换按钮时显示的,当鼠标离开图片时左右切换按钮时隐藏的,当图片滚动时,校园顶跟着一起滚动,当鼠标放到相应的小圆点,就切换到相应的照片。

那思路啥子呢?看图说话

slideshow2.png

这图就是轮播图的思路

html代码

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>轮播图</title>
    <script src="utils.js"></script>
    <script src="slideshow.js"></script>
    <link rel="stylesheet" href="slideshow.css">
</head>

<body>
    <div class="box">
        <div class="imgList" id="imgList">
            <img src="img/img1.jpg" alt="">
                        <img src="img/img2.jpg" alt="">
                        <img src="img/img3.jpg" alt="">
                        <img src="img/img4.jpg" alt="">
        </div>
        <div class="btn" id="btn">
            <a class="leftBtn" href="javascript:">&lt;</a>
            <a class="rightBtn" href="javascript:">&gt;</a>
        </div>
        <div class="tab" id="tab">
            <a href="javascript:"></a>
            <a href="javascript:"></a>
            <a href="javascript:"></a>
            <a href="javascript:"></a>
        </div>
    </div>
</body>

</html>

css代码

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    background: #fff;
}

.box {
    width: 600px;
    height: 350px;
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

.imgList {
    position: absolute;
}

.imgList img {
    width: 600px;
    height: 350px;
    position: absolute;
    right: 0;
}

.img1 {
    left: 0;
}

.img2 {
    left: 600px;
}

.img3 {
    left: 1200px;
}

.img4 {
    left: 1600px;
}

.btn {
    position: relative;
    left: 0;
    right: 0;
}

.btn a {
    position: absolute;
    top: 150px;
    display: inline-block;
    padding: 15px 8px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    color: white;
}

.leftBtn {
    left: 0;
}

.rightBtn {
    right: 0;
}

.tab {
    position: absolute;
    left: 40%;
    bottom: 0;
}

.tab a {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 10px
}

.whiteTab {
    background: #fff;
}

.redTab {
    background: #000;
}

js代码

window.onload = function () {
    //获得标签对象
    let imgList = $("imgList");
    let btn = $("btn");
    let tab = $("tab");
    let leftBtn = $("leftBtn");
    let rightBtn = $("rightBtn");

    //获得子元素
    let imgListChildren = imgList.children;
    let tabChildren = tab.children;

    //用来记录当前是第几张图片
    let index = 0;
    //用来记录当前是第几个小圆点
    let tabIndex = 0;

    //一张图片的宽度
    const IMG_WIDTH = 600;

    //存储定时器的返回值
    let timer = null;

    //当鼠标移入imgList时,btn显示
    imgList.onmousemove = function () {
        btn.style.display = "block";
        //鼠标进入时不自动播放,清除定时器
        clear();
    }
    //当鼠标移出imgList时,btn隐藏
    imgList.onmouseout = function () {
        btn.style.display = "none";
        //鼠标离开时,启动定时器
        startAuto();
    }

    //若不添加下面两句,则会出席那bug,鼠标进入btn时会抖动
    //当鼠标移到btn时,btn显示
    btn.onmouseenter = function () {
        btn.style.display = "block";
        //鼠标进入时不自动播放,清除定时器
        clear();
    }
    //当鼠标移出btn时,btn隐藏
    btn.onmouseout = function () {
        btn.style.display = "none";
        //鼠标离开时,启动定时器
        startAuto();
    }

    //点击左侧按钮时,left向左移动
    leftBtn.onclick = function () {
        leftMove();
    }
    //点击右侧按钮时,left向右运动
    rightBtn.onclick = function () {
        rightMove();
    }

    for (let i = 0; i < tabChildren.length; i++) {
        //鼠标悬浮再第几个小圆点上,就切换到第几张图片
        tabChildren[i].onmouseover = function () {
            //鼠标悬浮时不自动播放,清除定时器
            clear();
            MotionUtils.bufferMove(imgList, {
                left: -i * IMG_WIDTH
            });
            //切换小圆点
            tabMove(i);
        }
    }

    //自动播放
    startAuto();

    //自动播放
    function startAuto() {
    //自动播放时间间隔1500,你可以随意设置
        timer = setInterval(function () {
            rightMove();
        }, 1500);
    }

    //清除定时器
    function clear() {
        clearInterval(timer);
    }


    //小圆点
    function tabMove(i) {
        //切换到第几个小圆点,并修改index值,要求和i的值一致
        index = i;
        tabChildren[i].className = "redTab";
        //遍历tab,如果和i的值不想等则设为白色
        for (let j = 0; j < tabChildren.length; j++) {
            if (j !== i) {
                tabChildren[j].className = "whiteTab";
            }
        }
    }

    //左侧按钮
    function leftMove() {
        //向做移动index--
        index--;
        //若index===-1,那么就跳到最后一张图片,其index=3
        if (index === -1) {
            index = 3;
        }
        //设置left值
        MotionUtils.bufferMove(imgList, {
            left: -index * IMG_WIDTH
        });
        //切换小圆点
        tabMove(index);
    }

    //右侧按钮
    function rightMove() {
        //向右移动index++
        index++;
        //若index===4,那么就跳到第一张图,其index=0
        if (index === 4) {
            index = 0;
        }
        //设置left值
        MotionUtils.bufferMove(imgList, {
            left: -index * IMG_WIDTH
        });
        //切换小圆点
        tabMove(index);
    }

}

注释很详细了,就不过多解释了。以上就实现了简单轮播图。为什么叫简单呢,因为还没完成,还有一个问题。当滚动到最后一张图片再滚回第一张图片时,我们发现会经过中间的图片,那么我们怎样才能去掉这个效果呢。接下来就看看如何实现无缝轮播图,我们只需再第四张图片的最后加上第一张图即可。

window.onload = function () {
    //获得标签对象
    let imgList = $("imgList");
    let btn = $("btn");
    let tab = $("tab");
    let leftBtn = $("leftBtn");
    let rightBtn = $("rightBtn");

    //获得子元素
    let imgListChildren = imgList.children;
    let tabChildren = tab.children;

    //用来记录当前是第几张图片
    let index = 0;
    //用来记录当前是第几个小圆点
    let tabIndex = 0;

    //一张图片的宽度
    const IMG_WIDTH = 600;

    //存储定时器的返回值
    let timer = null;

    //当鼠标移入imgList时,btn显示
    imgList.onmousemove = function () {
        btn.style.display = "block";
        //鼠标进入时不自动播放,清除定时器
        clear();
    }
    //当鼠标移出imgList时,btn隐藏
    imgList.onmouseout = function () {
        btn.style.display = "none";
        //鼠标离开时,启动定时器
        startAuto();
    }

    //若不添加下面两句,则会出席那bug,鼠标进入btn时会抖动
    //当鼠标移到btn时,btn显示
    btn.onmouseenter = function () {
        btn.style.display = "block";
        //鼠标进入时不自动播放,清除定时器
        clear();
    }
    //当鼠标移出btn时,btn隐藏
    btn.onmouseout = function () {
        btn.style.display = "none";
        //鼠标离开时,启动定时器
        startAuto();
    }

    //点击左侧按钮时,left向左移动
    leftBtn.onclick = function () {
        leftMove();
    }
    //点击右侧按钮时,left向右运动
    rightBtn.onclick = function () {
        rightMove();
    }

    for (let i = 0; i < tabChildren.length; i++) {
        //鼠标悬浮再第几个小圆点上,就切换到第几张图片
        tabChildren[i].onmouseover = function () {
            //鼠标悬浮时不自动播放,清除定时器
            clear();
            MotionUtils.bufferMove(imgList, {
                left: -i * IMG_WIDTH
            });
            //切换小圆点
            tabMove(i);
        }
        tabChildren[i].onmouseout = function () {
            startAuto();
        }
    }

    //自动播放
    startAuto();

    //自动播放
    function startAuto() {
        timer = setInterval(function () {
            rightMove();
        }, 1500);
    }

    //清除定时器
    function clear() {
        clearInterval(timer);
    }


    //小圆点
    function tabMove(i) {
        //切换到第几个小圆点,并修改index值,要求和i的值一致
        index = i;
        //当i===4时,小圆点应该为0
        if (i === 4) {
            i = 0;
        }
        tabChildren[i].className = "redTab";
        //遍历tab,如果和i的值不想等则设为白色
        for (let j = 0; j < tabChildren.length; j++) {
            if (j !== i) {
                tabChildren[j].className = "whiteTab";
            }
        }
    }

    //左侧按钮
    function leftMove() {
        //向做移动index--
        index--;
        //若index===-1,那么就直接设置left为-4*IMG_WIDTH,然后index = 3
        if (index === -1) {
            imgList.style.left = -4 * IMG_WIDTH + "px";
            index = 3;
        }
        //设置left值
        MotionUtils.bufferMove(imgList, {
            left: -index * IMG_WIDTH
        });
        //切换小圆点
        tabMove(index);
    }

    //右侧按钮
    function rightMove() {
        //向右移动index++
        index++;
        //若index===5,那么直接把imgList的left值设为0,index设为1
        if (index === 5) {
            imgList.style.left = 0;
            index = 1;
        }
        //设置left值
        MotionUtils.bufferMove(imgList, {
            left: -index * IMG_WIDTH
        });
        //切换小圆点
        tabMove(index);
    }

}

function $(id) {
    return document.getElementById(id);
}

function getStyle(element, attr) {
    let result = element.currentStyle ? element.currentStyle[attr] : getComputedStyle(element, null)[attr];
    return Number.parseFloat(result);
}



let MotionUtils = {
    /**
     *
     * @param obj 要改变的对象
     * @param attr 要改变的对象的属性
     * @param finalValue 要改变对象的属性的最大值
     * @param callback 在上一次运动完后下一次要运动的函数,回调自己
     */
    bufferMove: function (obj, data, callback) {
        //清除旧定时器
        clearInterval(obj.timer);
        //开启新定时器
        obj.timer = setInterval(function () {
            //flg标识运动是否完毕
            let flg = true;
            for (let attr in data) {
                //获得当前obj属性值
                let currentValue;
                if (attr === "opacity") {
                    currentValue = Number.parseFloat(getStyle(obj, attr)) * 100;
                } else {
                    currentValue = Number.parseInt(getStyle(obj, attr));
                }
                //计算速度
                let speed = (data[attr] - currentValue) / 8;

                //计算物体运动方向
                speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);

                //计算下一次obj的属性值
                let nextValue = currentValue + speed;
                //设置属性值
                if (attr === "opacity") {
                    obj.style[attr] = nextValue / 100;
                    obj.style.filter = "alpha(opacity=" + nextValue + ")";
                } else {
                    obj.style[attr] = nextValue + "px";
                }
                //判断当前属性是否运动完毕
                if (nextValue !== data[attr]) {
                    flg = false;
                }
            }
            //清除定时器
            if (flg) {
                clearInterval(obj.timer);
                //如果传了callback,那么就执行这个函数
                if (callback) {
                    callback();
                }
            }
        }, 50);
    },



    fadein: function (element) {
        let speed = 0.1;
        clearInterval(element.timer);
        element.timer = setInterval(function () {
            let currentOpacity = Number(getStyle(element, "opacity"));

            if (currentOpacity < 1) {
                element.style.opacity = currentOpacity + speed;
            }
            if (currentOpacity >= 1) {
                element.style.opacity = 1;
                clearInterval(element.timer);
            }
        }, 50);
    },

    fadeout: function (element) {
        let speed = 0.1;
        clearInterval(element.timer);
        element.timer = setInterval(function () {
            let currentOpacity = Number(getStyle(element, "opacity"));

            if (currentOpacity > 0) {
                element.style.opacity = currentOpacity - speed;
            }
            if (currentOpacity <= 0) {
                element.style.opacity = 0;
                clearInterval(element.timer);
            }
        }, 50);
    }


}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容