English 中文(简体)
我如何把图像ade掉,而不仅仅是一头 appear刻在车上?
原标题:How do I make the images fade in and out, not just appearing once, in a carousel?

我想给我造成/。 一切工作都很出色,但形象表面上看上去,而不是 in。

// JavaScript for the fade carousel
const slides = document.querySelectorAll( .carousel-slide );
let currentSlide = 0;

// Show the first slide initially
slides[currentSlide].style.display =  block ;

function nextSlide() {
  slides[currentSlide].style.display =  none ;
  currentSlide = (currentSlide + 1) % slides.length;
  slides[currentSlide].style.display =  block ;
}

// Automatically switch slides every 3 seconds
setInterval(nextSlide, 3000);
.carousel-container {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
}
<div class="carousel-container">
  <img class="carousel-slide" src="https://fakeimg.pl/600x200?text=Nurses" alt="Slide 1">
  <img class="carousel-slide" src="https://fakeimg.pl/600x200?text=Barbers" alt="Slide 2">
  <img class="carousel-slide" src="https://fakeimg.pl/600x200?text=Receptionist" alt="Slide 3">
</div>
最佳回答

公正使用不透明性和过渡。 也可以听取<条码>译文。 如果你需要更多控制的话。

// JavaScript for the fade carousel
const slides = document.querySelectorAll( .carousel-slide );
let currentSlide = 0;

// Show the first slide initially
slides[currentSlide].style.opacity =  1 ;

function nextSlide() {
  slides[currentSlide].style.opacity =  0 ;
  currentSlide = (currentSlide + 1) % slides.length;
  slides[currentSlide].style.opacity =  1 ;
}

// Automatically switch slides every 3 seconds
setInterval(nextSlide, 3000);
.carousel-container {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  
  width: 100%;
  aspect-ratio: 16/9;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-out;
  opacity: 0;
  
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
<div class="carousel-container">
  <img class="carousel-slide" src="https://fakeimg.pl/600x400?text=Nurses" alt="Slide 1">
  <img class="carousel-slide" src="https://fakeimg.pl/600x400?text=Barbers" alt="Slide 2">
  <img class="carousel-slide" src="https://fakeimg.pl/600x400?text=Receptionist" alt="Slide 3">
</div>
问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签