js 윤 방도 효과 순수 js 이미지 자동 전환 실현

본 논문 의 사례 는 순수 js 가 이미지 자동 전환 을 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
1.마우스 가 지나 갈 때 좌우 에 있 는 작은 버튼 두 개가 자동 으로 팝 업 되 고 재생 이 정지 되 며 좌우 에 있 는 작은 버튼 을 누 르 면 그림 을 전환 할 수 있 습 니 다.
2.마우스 가 떠 나 면 자동 재생 이 재 개 됩 니 다.
3.아래 가운데 동그라미 몇 개 를 클릭 하면 자동 으로 그림 이 바 뀝 니 다.


원본 코드:

<!DOCTYPE html>


<html lang="en">

<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
 <style>
  * {
   margin: 0;
   padding: 0;
  }

  /*         */
  .lunbotu {
   position: relative;
   width: 520px;
   height: 280px;
   margin: 50px auto;
   background-color: blue;
   overflow: hidden;
  }

  /*        */
  .left,
  .right {
   display: none;
   position: absolute;
   top: 50%;
   margin-top: -15px;
   width: 30px;
   height: 30px;
   background-color: cornsilk;
   border-radius: 15px;
   text-align: center;
   line-height: 30px;
   cursor: pointer;
   z-index: 1;
  }

  .left {
   left: 0;
  }

  .right {

   right: 0;
  }


  li {
   list-style: none;
  }

  /*      ul    */
  .firstul {
   position: absolute;
   top: 0;
   left: 0;
   width: 500%;

  }

  .firstul li {
   float: left;
   /* display: none; */
  }

  /*          */
  ol {
   /* width: 90px; */
   padding: 0 5px 0 5px;
   position: absolute;
   bottom: 10px;
   left: 50%;
   margin-left: -45px;
   background-color: darkgrey;
   text-align: center;
   border-radius: 9px;
  }

  ol li {
   display: inline-block;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   margin-right: 5px;
   background-color: white;
   cursor: pointer;
  }

  .current {
   background-color: red;
  }
 </style>
 <script src="animation.js"></script>
</head>

<body>
 <!--        520*280 -->
 <div class="lunbotu">
  <!--      -->
  <div class="left">></div>
  <div class="right"><</div>
    <!--      -->
    <ul class="firstul">
     <li><a href=""><img src=" images/1.jpg" alt=""> </a></li>
     <li><a href=""><img src=" images/2.jpg" alt=""> </a></li>
     <li><a href=""><img src=" images/3.gif" alt=""> </a></li>
     <li><a href=""><img src=" images/4.webp" alt=""> </a></li>
    </ul>
    <!--     -->
    <ol class="firstol"></ol>
  </div>
  <!-- JS   -->
  <script>
   // 1.     
   var lunbotu = document.querySelector('.lunbotu');
   var leftBox = document.querySelector('.left');
   var rightBox = document.querySelector('.right');
   var ul = lunbotu.querySelector('ul');
   var ol = lunbotu.querySelector('ol');
   var right = document.querySelector('.right');
   var left = document.querySelector('.left');
   var lunbotuWidth = lunbotu.offsetWidth;
   // console.log(ul)
   // console.log(ol)
   //    :
   //           ,       
   lunbotu.addEventListener('mouseenter', function () {
    leftBox.style.display = 'block';
    rightBox.style.display = 'block';
    //           ,     
    clearInterval(timer);
   })
   //           ,       
   lunbotu.addEventListener('mouseleave', function () {
    leftBox.style.display = 'none';
    rightBox.style.display = 'none';
    timer = setInterval(function () {
     right.click();
    }, 2000)

   })
   //    :
   // 1.       
   // 2.            
   // 3.   ul       (    li  ,    li   )
   // 4.           (        ol  )
   // 5.    createElement('li')]
   // 6.    ol.appendChild(li)
   // 7.          current 
   for (var i = 0; i < ul.children.length; i++) {
    //     li
    var li = document.createElement('li')
    //                      
    li.setAttribute('index', i);
    //  li   ol
    ol.appendChild(li);
   }
   //     :  Li   
   for (var i = 0; i < ol.children.length; i++) {
    ol.children[i].addEventListener('click', function () {
     for (var i = 0; i < ol.children.length; i++) {
      ol.children[i].className = '';
     } this.className = 'current';

     //                 
     //       index
     var index = this.getAttribute('index');
     //    bug
     num = index;
     num_ol = index;
     // console.log(lunbotuWidth);
     // console.log(index)
     animation(ul, - index * lunbotuWidth)
    })
   }
   //     li   
   ol.children[0].className = 'current';
   //      li
   var first = ul.children[0].cloneNode(true);
   ul.appendChild(first);
   //    :
   //         
   var num = 0;
   //                 
   var num_ol = 0;
   //    ,      ,        
   var flag = true;
   //     :
   right.addEventListener('click', function () {
    if (flag) {
     flag = false; //      
     if (num == ul.children.length - 1) {
      ul.style.left = 0;
      num = 0;
     }
     num++;
     animation(ul, -num * lunbotuWidth, function () {
      flag = true;
     });
     num_ol++;
     if (num_ol == ol.children.length) {
      num_ol = 0
     }
     for (var i = 0; i < ol.children.length; i++) {
      ol.children[i].className = '';
     }
     ol.children[num_ol].className = 'current';
    }
   });
   //     :
   left.addEventListener('click', function () {
    if (flag) {
     flag = false;
     if (num == 0) {
      ul.style.left = -(ul.children.length - 1) * lunbotuWidth + 'px';
      num = ul.children.length - 1;
     }
     num--;
     animation(ul, -num * lunbotuWidth, function () {
      flag = true;
     });
     num_ol--;
     // num_ol=0     ,      ,     ol.children.length-1   
     if (num_ol < 0) {
      num_ol = ol.children.length - 1
     }
     for (var i = 0; i < ol.children.length; i++) {
      ol.children[i].className = '';
     }
     ol.children[num_ol].className = 'current';
    }
   });
   //       
   var timer = setInterval(function () {
    right.click();
   }, 2000)
  </script>
</body>
</html>
5.Js 파일 의 코드

//        js  
function animation(obj,target,fn1){
 // console.log(fn1);
 // fn       ,           
 //                
 clearInterval( obj.timer);
 obj.timer = setInterval(function(){
 //            
 //     
 var step = (target - obj.offsetLeft) /10;
 step = step > 0 ? Math.ceil(step) :Math.floor(step); 

 if(obj.offsetLeft == target){
  clearInterval( obj.timer);
  //   fn1  ,  fn
  if(fn1){
  fn1();
  }
 }else{
  //  50        obj.left
 obj.style.left = obj.offsetLeft +step +'px';
 }
 },30)
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기