轮播图(一)

轮播图功能实现

自动进行图片轮播功能
在这里插入图片描述
在这里插入图片描述
代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
    
    *{
        margin: 0;
        padding: 0;
    }
    .box {
        width: 800px;
        height: 600px;
        border:2px solid #000;
        margin: 100px auto;
        position: relative;
        overflow: hidden;
    }
    li{
        list-style:none;
    }
    ul {
        width:4000px;
        height: 600px;
        position: relative;
    }
    ul li {
        width: 800px;
        height: 600px;
        float: left;
    }
    ul li img{
        width:800px;
        height: 600px;
    }

    ol {
        width: 200px;
        height: 20px;
        position: absolute;
        bottom: 40px;
        right: 40px;
    }
    ol li {
        width: 20px;
        height: 20px;
        background: #000;
        float: left;
        border-radius: 50%;
    }
    ol li+li {
        margin-left: 10px;
    }
    ol li.active{
        color: red;
    }
    .btn {
        width: 40px;
        height: 60px;
        font-size: 40px;
        text-align: center;
        line-height: 60px;
        color: #fff;
        position: absolute;
        top: 50%;
        margin-top: -30px;
        background-color: rgba(0,0,0,0.5);
    }
    .left{
        left:0
    }
    .right{
        right:0
    }
    </style>
</head>
<body>
    <div class="box">
<ul>
    <li><img src="images/1.jpeg" alt=""></li>
    <li><img src="images/2.jpeg" alt=""></li>
    <li><img src="images/3.jpeg" alt=""></li>
    <li><img src="images/4.jpeg" alt=""></li>
    <li><img src="images/5.jpeg" alt=""></li>
</ul>
<ol>
    <li class="active"></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
</ol>
<p class="btn left">&lt;</p>
<p class="btn right">&gt;</p>
</div>
    <script src="utils.js"></script>
    <script>
    const ul = my$('ul')[0]
    const ulis = my$('li',ul)
    const liWidth = ulis[0].offsetWidth

    let currentIndex = 0
    let nextIndex = 1

    setInterval(() => {
        animate(ul,{left:-liWidth * nextIndex},1000)
        currentIndex = nextIndex
        nextIndex++
        if (nextIndex>=5){
            nextIndex=0
        }

    }, 2000);
    
    </script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值