qq_45952708 2019-12-02 21:31 采纳率: 0%
浏览 574

js轮播图,能正常自动轮播,有两个按钮,代表上一张图和下一站图,下一张图没问题,问题:点上一张图时,仍然显示下一张的图.

<style type="text/css">
    *{
        margin:0;
        padding:0;
    }
    .rota-img{
        width:650px;
        height:350px;
        position:absolute;
        top:0;right:0;bottom:0;left:0;
        margin:auto;
    }
    .rota-img button:nth-child(2){
        position:absolute;
        top:0;bottom:0;
        margin:auto 0;
        left:0;
        width:40px;
        height:40px;
        font-size:30px;
    }
    .rota-img button:nth-child(3){
        width:40px;
        height:40px;
        position:absolute;
        top:0;bottom:0;
        margin:auto 0;
        right:0;
        font-size:30px;
    }
    .rota-img img{
        width:650px;
        height:350px;
    }
  </style>
 </head>
 <body>

    <div class="rota-img">
        <img src="1.jpg" id="rotaImg" class="imgs">
        <button onclick="goPre()">&lt;</button>
        <button onclick="goNext()">&gt;</button>
    </div> 
  <script type="text/javascript">
    var arr = ["1.jpg","2.jpg","3.jpg","4.jpg","5.jpg"];
    var timer;
    var inx = 0;
    function autoRotate(){
        document.getElementById("rotaImg").src = arr[inx];
        if(inx == 4){
            inx = 0;
        }else{
            inx++;
        }
        timer = setTimeout(autoRotate,2000);
    }
    autoRotate();
    function goNext(){
        clearTimeout(timer);
        document.getElementById("rotaImg").src = arr[(inx+1)];
        autoRotate();
    }
    function goPre(){
        clearTimeout(timer);
        document.getElementById("rotaImg").src = arr[(inx-1)];
        autoRotate();
    }

  </script>
  • 写回答

3条回答 默认 最新

  • zqbnqsdsmd 2019-12-02 22:39
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀