轮播图--------js

1.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="js/lun.js"></script>
    <script src="js/animation.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        
        .focus {
            overflow: hidden;
            position: relative;
            width: 721px;
            height: 455px;
            border: 1px solid red;
            margin: 50px;
        }
        
        .focus .imgul {
            width: 500%;
            position: absolute;
            top: 0px;
            left: 0px;
        }
        
        .focus .imgul li {
            float: left;
            list-style: none;
        }
        
        .focus .left {
            display: none;
            position: absolute;
            top: 181px;
            left: 0px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            text-align: center;
            color: grey;
            font-size: 30px;
        }
        
        .focus .right {
            display: none;
            position: absolute;
            top: 190px;
            right: 0px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            text-align: center;
            color: grey;
            font-size: 30px;
        }
        
        .bottom ol {
            position: absolute;
            top: 388px;
            left: 279px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 150px;
            height: 40px;
            border-radius: 8px;
            background-color: grey;
            opacity: .4;
        }
        
        .bottom ol li {
            width: 15px;
            height: 15px;
            border: 1px solid yellow;
            list-style: none;
            border-radius: 50%;
        }
        
        .bottom .current {
            background-color: red;
        }
    </style>

    <body>
        <div class="focus">
            <ul class='imgul'>
                <li>
                    <a>
                        <img src="img/focus1.jpg">
                    </a>
                </li>
                <li>
                    <a>
                        <img src="img/focus.jpg">
                    </a>
                </li>

                <li>
                    <a>
                        <img src="img/focus2.jpg">
                    </a>
                </li>
                <li>
                    <a>
                        <img src="img/focus3.jpg">
                    </a>
                </li>

            </ul>
            <div class="left">《 </div>
            <div class="right">》</div>
            <div class="bottom">
                <ol>

                </ol>
            </div>
        </div>

    </body>

</html>

2.动画效果js

function animation(obj, length, callback) {
    obj.timer = setInterval(() => {
        var step = (length - obj.offsetLeft) / 10;
        step =
            length - obj.offsetLeft > 0 ?
            Math.ceil(length - obj.offsetLeft) :
            Math.floor(length - obj.offsetLeft);
        if (obj.offsetLeft == length) {
            clearInterval(obj.timer);
            if (callback !== undefined) {
                callback();
            }
        }
        obj.style.left = obj.offsetLeft + step + 'px';
    }, 10);
}

3.功能js

window.addEventListener('load', function() {
    var left = document.querySelector('.left');
    var right = document.querySelector('.right');
    var focus = document.querySelector('.focus');
    // 1. 鼠标进入左右箭头的显示与隐藏
    focus.addEventListener('mouseenter', function() {
        left.style.display = 'block';
        right.style.display = 'block';
        clearInterval(timer);
    });
    focus.addEventListener('mouseleave', function() {
        left.style.display = 'none';
        right.style.display = 'none';
        timer = setInterval(() => {
            right.click();
        }, 2000);
    });
    // 2. 跟随图片动态生成小圆点
    var ul = document.querySelector('.imgul');
    var lis = ul.children;
    var ol = document.querySelector('.bottom').querySelector('ol');
    for (var i = 0; i < lis.length; i++) {
        var li = document.createElement('li');
        li.setAttribute('index', i);
        ol.appendChild(li);
    }
    ol.children[0].className = 'current';
    // 3. 排他思想, 点击小圆点后, 小圆点变色
    // 4. 点击小圆点,图片移动
    var ollis = ol.children;
    for (var i = 0; i < ollis.length; i++) {
        ollis[i].addEventListener('click', (e) => {
            for (var i = 0; i < ollis.length; i++) {
                ollis[i].removeAttribute('class');
            }
            e.target.className = 'current';
            num = e.target.getAttribute('index');
            circle = e.target.getAttribute('index');
            animation(ul, -e.target.getAttribute('index') * focus.offsetWidth);
        });
    }
    // 5. 克隆一个图片放在最后面
    var lastimg = lis[0].cloneNode(true);
    ul.appendChild(lastimg);
    //  6. 点击右侧按钮, 向右移动
    var num = 0;
    var circle = 0;
    var flag = true;
    right.addEventListener('click', () => {
        if (flag) {
            flag = false;
            if (num == lis.length - 1) {
                ul.style.left = '0px';
                num = 0;
            }
            num++;
            animation(ul, -num * focus.offsetWidth, function() {
                flag = true
            });
            circle++;
            if (circle == ollis.length) {
                circle = 0;
            }
            for (var i = 0; i < ollis.length; i++) {
                ollis[i].className = '';
            }
            ollis[circle].className = 'current';
        }
    });
    // 7. 点击左侧按钮,向右移动
    left.addEventListener('click', () => {
        if (flag = true) {
            flag = false
            if (num == 0) {
                num = lis.length - 1;
                ul.style.left = -num * focus.offsetWidth + 'px';
            }
            num--;
            animation(ul, -num * focus.offsetWidth, () => {
                flag = true
            });
            circle--;
            if (circle < 0) {
                circle = ollis.length - 1;
            }
            for (var i = 0; i < ollis.length; i++) {
                ollis[i].className = '';
            }
            ollis[circle].className = 'current';
        }

    });
    // 8. 自动播放轮播图
    var timer = setInterval(() => {
        right.click();
    }, 2000);
});

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值