怎么用js点击按钮实现多张图片循环切换

发布时间:2022-01-25 13:44:02 作者:iii
来源:亿速云 阅读:431

本篇内容介绍了“怎么用js点击按钮实现多张图片循环切换”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

具体内容如下

代码:

<!DOCTYPE html>
<html lang="ch">
    <head>
        <meta charset="UTF-8">
        <title>点击按钮实现多张图片的循环切换</title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }

            .img-wrapper {
                width: 520px;
                height: 520px;
                background-size: contain;
                overflow: hidden;
                margin: 50px auto;
                background-color: green;
            }
            .img-wrapper img{
                width: 533px;
                height: 300px;
            }

            .img-wrapper p {
                text-align: center;
                height: 20px;
                line-height: 20px;
                font-size: 16px;
                margin-bottom: 10px;
                margin-top: 8px;
            }

            .img-wrapper button {
                margin: 12px 93px;
                font-size: 18px;
            }
        </style>
        <script type="text/javascript">
            window.onload = function () {
                let prev = document.getElementById("prev");
                let next = document.getElementById("next");
                let img = document.getElementsByTagName("img")[0];
                let info = document.getElementById("info");
                //创建一个数组存储照片的路径
                let imgArr = ["img/111.jpg", "img/222.jpg", "img/333.jpg", "img/444.jpg", "img/555.jpg", "img/666.jpg"];
                let index = 0;
                info.innerText = "一共有" + imgArr.length + "张照片,现在是第" + (index + 1) + "张";
                prev.onclick = function () {
                    index--;
                    prev.style.backgroundColor="#ff4c31";
                    if (index < 0) {
                        index = imgArr.length - 1;
                    }
                    img.src = imgArr[index];
                    info.innerText = "一共有" + imgArr.length + "张照片,现在是第" + (index + 1) + "张";
                };

                next.onclick = function () {
                    index++;
                    next.style.backgroundColor="#ff4c31";
                    if (index > imgArr.length - 1) {
                        index = 0;
                    }
                    img.src = imgArr[index];
                    info.innerText = "一共有" + imgArr.length + "张照片,现在是第" + (index + 1) + "张";
                };

            };
        </script>
    </head>
    <body>
        <div class="img-wrapper">
            <p id="info"></p>
            <img src="img/111.jpg">
            <button id="prev">上一张</button>
            <button id="next">下一张</button>
        </div>
    </body>
</html>

效果:

怎么用js点击按钮实现多张图片循环切换

“怎么用js点击按钮实现多张图片循环切换”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

推荐阅读:
  1. Button按钮点击图片切换效果
  2. 原生js实现点击轮播切换图片

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

js

上一篇:怎么解决springboot+shiro+thymeleaf页面级元素的权限控制问题

下一篇:C++11怎么实现字符串分割

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》