搜尋

首頁  >  問答  >  主體

javascript - 學習一個月自己做的輪播圖 裡面的出現的問題想請教一下。

問題有兩個 :

1,鼠标进入和移出只有第一次有用  后面就图片就开始乱切换了
2,点击右移按钮 图片不能从第一张切换到第5张 
做了一天了  求大神搭救!
<!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>
</head>
<style>
*{
    margin: 0;padding: 0;
}
#ft{
    position: relative;
    width: 320px;height: 400px;
    margin: 50px auto;border: 1px solid #000;
    background-color: pink;    border-radius: 15px;

}
.rt{
    width: 30px;height: 30px;opacity:0.2;
    top: 160px;left: 290px;position: absolute;z-index: 10;
}
.lt{
    width: 30px;height: 30px;opacity:0.2;
    position: absolute;top: 160px;z-index: 10;left: 0;
}
img{
    width: 250px;height: 350px;
    position: absolute;left: 34px;top: 25px;

}
.cg{
    z-index: 9;



}
</style>
<body>
    <p id="ft">
        <p id="chd2">
            <img class="cg" src="1.png" >
            <img src="2.png" >
            <img src="3.png" >
            <img src="4.png" >
            <img src="5.png" >
        </p>
        <p id="chd1">
            <img class="lt" src="7.png" alt="">
            <img class="rt" src="8.png" alt="">
        </p>
    </p>
    <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js">
    </script>
    <script>
        var $img=$("#chd2 img")
        var $stp=$("#chd2")
        var timer=setInterval(right,1500)
        $stp.mouseout(function(){
            setInterval(right,1500)
        })
        $stp.mouseover(function(){
            clearInterval(timer)
        })
        $(".rt").click(right)//点击向左按钮
         function right(){
            for(var i=0;i<$img.length;i++){
                if($img[i].className=="cg"&&i<$img.length-1){
                    $img[i].nextElementSibling.className="cg";
                    $img[i].className="";
                    break;
                }else if(i==$img.length-1){
                    $img[i].className="";
                    $img[0].className="cg";
                }
            }
        }
        $(".lt").click(function(){//点击向右按钮
            for(var i=0;i<$img.length;i++){
                if($img[i].className=="cg"&&i>0){
                    $img[i].className="";
                    $img[i].previousElementSibling.className="cg";
                    break;
                }else if(i==0){
                    $img[i].className="";
                    $img[4].className="cg";break
                }
            }
        })



    </script>


</body>
</html>
漂亮男人漂亮男人2806 天前469

全部回覆(4)我來回復

  • 高洛峰

    高洛峰2017-05-19 10:12:56

    var timer=setInterval(right,1500)
     $stp.mouseout(function(){
           timer = setInterval(right,1500)
    })
     $stp.mouseover(function(){
            clearInterval(timer)
     })

    滑鼠移出的時候又重新設定計時器的話,記得賦值給timer,不然後面的clearInterval都不知道clear sei了~

    回覆
    0
  • 阿神

    阿神2017-05-19 10:12:56

     var timer=setInterval(right,1500)
            $stp.mouseout(function(){
                setInterval(right,1500)
            })
            $stp.mouseover(function(){
                clearInterval(timer)
            })
            

    這個地方有問題,timer這個計時器一開始打開,第一次over後,關閉了這個計時器,再mouseout的時候開啟了一個計時器 $stp.mouseout(function(){

                setInterval(right,1500)
            })

    但這個計時器並不是timer,所以,你後面就不可能清除這個計時器了。

    回覆
    0
  • 某草草

    某草草2017-05-19 10:12:56

    雷雷 雷雷

    回覆
    0
  • 黄舟

    黄舟2017-05-19 10:12:56

    為什麼沒人回答我第二個問題呢

    回覆
    0
  • 取消回覆