Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Fading Slider Reply To: Fading Slider

#257004
Atelierbram
Participant

Use transitions of opacity, something like:

.slide {
  opacity: 0;
  transition: opacity .5s ease-out;
}

.slide-current {
  opacity: 1;
}