關於JavaScript輪播圖的實現

今天又是一個非常實用的案例喲,聽名字就覺得高級很難對吧,今天就來寫一個案例,讓你輕松學到輪播圖的精髓!!

 還是老規矩,來看一下實現效果!!

學習輪播圖的首先是要把圖片準備好,並且用 ul 的裡面的 li 包起來,給 li 一個浮動,讓他們顯示在一行上,但是註意瞭,一定要給 ul 足夠的寬哦!!

來吧,html 和 css 代碼如下所示(文件名:index.html)

<!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>
    <script src="animate.js"></script>
    <script src="輪播圖.js"></script>
    <style>
        body {
            background-color: rgb(151, 147, 147);
        }
 
        * {
            margin: 0;
            padding: 0;
        }
 
        div {
            overflow: hidden;
            position: relative;
            width: 500px;
            height: 500px;
            background-color: skyblue;
            margin: 20px auto;
        }
 
        ul {
            list-style: none;
        }
 
        .img {
            width: 600%;
            position: absolute;
            left: 0;
        }
 
        li {
            float: left;
        }
 
        img {
            width: 500px;
            height: 500px;
        }
 
        .yuan>li {
            cursor: pointer;
            width: 10px;
            height: 10px;
            background-color: rgb(190, 185, 185);
            border-radius: 50%;
            margin: 0 5px;
            border: 1px solid rgb(119, 114, 114);
        }
 
        .yuan {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }
 
        .yuan .color {
            background-color: rgb(228, 135, 135);
        }
 
        a {
            text-decoration: none;
            color: black;
            background-color: rgb(112, 111, 111);
            display: inline-block;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }
 
        .left {
            left: 0;
        }
 
        .right {
            right: 0;
        }
    </style>
</head>
 
<body>
    <div class="box">
        <ul class="img">
            <li><img src="images/1.webp" alt=""></li>
            <li><img src="images/2.jpg" alt=""></li>
            <li><img src="images/3.webp" alt=""></li>
            <li><img src="images/4.webp" alt=""></li>
            <li><img src="images/5.webp" alt=""></li>
        </ul>
        <a href="JavaScript:;" rel="external nofollow" rel="external nofollow" class="left">&lt;</a>
        <a href="JavaScript:;" rel="external nofollow" rel="external nofollow" class="right">></a>
        <ul class="yuan"></ul>
    </div>
</body>
 
</html>

這樣寫好以後,一個基本的樣子就算是有瞭。

接下來就是讓他動起來,想想什麼可以讓圖片動起來,是不是我們學過的動畫效果呀,所有這個地方要用緩動動畫來實現一個切換圖片的效果,因為 js 代碼較多,所以得新建一個 js 文件,把代碼封裝起來!

下面就是封裝得 js 代碼 (文件名:輪播圖.js)

window.addEventListener('load', function () {
    var img = document.querySelector('.img');
    var yuan = document.querySelector('.yuan');
    var box = document.querySelector('.box');
    var left = document.querySelector('.left');
    var right = document.querySelector('.right');
    var imgwidth = box.offsetWidth;  //獲取盒子的寬度(圖片的寬度)
    // 經過鼠標觸發 停止自動滾動圖片效果
    box.addEventListener('mouseenter', function () {
        left.style.display = 'block';
        right.style.display = 'block';
        clearInterval(timer);
    })
    // 離開鼠標觸發 自動滾動圖片再次觸發
    box.addEventListener('mouseleave', function () {
        left.style.display = 'none';
        right.style.display = 'none';
        timer = setInterval(function () {
            right.click();
        }, 2000)
    })
    // 根據圖片添加下面的小圓點
    for (var i = 0; i < img.children.length; i++) {
        var li = document.createElement('li');
        yuan.appendChild(li);
        li.setAttribute('date-index', i);
        li.addEventListener('click', function () {
            for (var j = 0; j < yuan.children.length; j++) {
                yuan.children[j].className = '';
            }
            this.className = 'color';
            var index = this.getAttribute('date-index');
            var imgwidth = box.offsetWidth;
            // animate(obj,target,function(){})
            animate(img, -index * imgwidth);
            nums = index;
            colors = index;
        })
    }
    // 默認第一個小圓點有顏色
    yuan.children[0].className = 'color';
    var nums = 0;
    var colors = 0;
    // 復制第一張圖片到最後,給無縫滾動做準備
    var li = img.children[0].cloneNode(true);
    img.appendChild(li);
    var flag = true;
    //右邊按鈕,切換下一張,小圓點一起變化
    right.addEventListener('click', function () {
        if (flag) {
            flag = false;
            if (nums == img.children.length - 1) {
                nums = 0;
                img.style.left = 0;
            }
            nums++;
            animate(img, -nums * imgwidth, function () {
                flag = true;
            });
            colors++;
            if (colors == yuan.children.length) {
                colors = 0;
            }
            for (var j = 0; j < yuan.children.length; j++) {
                yuan.children[j].className = '';
            }
            yuan.children[colors].className = 'color';
        }
    })
    // 左邊按鈕,切換下一張,小圓點一起變化
    left.addEventListener('click', function () {
        if (flag) {
            flag = false;
            if (nums == 0) {
                nums = img.children.length - 1;
                img.style.left = -nums * imgwidth + 'px';
            }
            nums--;
            colors--;
            animate(img, -nums * imgwidth, function () {
                flag = true;
            });
            if (colors < 0) {
                colors = yuan.children.length - 1;
            }
            // if (colors == 0) {
            //     colors = yuan.children.length;
            // }
            // colors--;
            for (var j = 0; j < yuan.children.length; j++) {
                yuan.children[j].className = '';
            }
            yuan.children[colors].className = 'color';
        }
    })
    // 鼠標不經過圖片實現自動滾動
    var timer = setInterval(function () {
        right.click();
    }, 2000)
})


關鍵的來瞭,要讓動起來怎麼少得瞭動畫效果呢,我單獨封裝瞭一個 js 文件,這樣以後寫其他案例的時候也可以直接引用瞭。

代碼如下(文件名:animate.js)

function animate(obj, target, callback) {  //移動的對象(誰移動),移動的目的位置,回調函數
    // 先清除以前的定時器,隻保留當前的一個定時器執行
    clearInterval(obj.timer);
    obj.timer = setInterval(function () {
        // 步長寫到定時器裡面
        var step = (target - obj.offsetLeft) / 10; //步長公式:(目標位置-現在的位置)/10
        step = step > 0 ? Math.ceil(step) : Math.floor(step); //步長改為整數,不要出現小數,正數向上取整,負數向下取整
        if (obj.offsetLeft == target) {
            clearInterval(obj.timer)  //停止動畫,本質是停止定時器
            if (callback) {
                callback(); // 回調函數寫到定時器結束裡面
            }
        }
        //步長作為一個慢慢變小的值才能實現從快到慢的緩動停止的效果
        obj.style.left = obj.offsetLeft + step + 'px';
    },15)
}


基本上都用註釋寫清楚瞭,應該能每一步都看得懂瞭。

到此這篇關於關於JavaScript輪播圖的實現的文章就介紹到這瞭,更多相關輪播圖的實現內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: