温馨提示×

温馨提示×

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

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

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

发布时间:2022-01-25 13:44:02 阅读:472 作者:iii 栏目:开发技术
前端开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

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

具体内容如下

代码:

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

            .img-wrapper {
                width520px;
                height520px;
                background-size: contain;
                overflow: hidden;
                margin50px auto;
                background-color: green;
            }
            .img-wrapper img{
                width533px;
                height300px;
            }

            .img-wrapper p {
                text-align: center;
                height20px;
                line-height20px;
                font-size16px;
                margin-bottom10px;
                margin-top8px;
            }

            .img-wrapper button {
                margin12px 93px;
                font-size18px;
            }
        </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点击按钮实现多张图片循环切换”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

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

js
AI

开发者交流群×