슬라이드

박범준·2021년 8월 4일
0
var firstSlide = document.querySelector('.item:firest-child');
firstslide.classList.add('show');

function slide() {
	var currentSlide = 	document.querySelector('.show');
   
   if(currentSlide){
      currentSlide.classList.remove('show');
      var nextSlide = currentSlide.nextElementsibling;
      
      if(nextSlide){          
          nextSlide.classList.add("show");
         
       }else{
              firstSlide.classList.add('show');
       }

    }else{
    		firstSlide.classList.add('show');
    }
}
slide();
setInterval(slide,2000);
profile
HTML/CSS/JAVASCRIPT

0개의 댓글