I'm searching for a smart solution to create a slideshow with 3 crossfading images.
The active image should be
- fade in to 80% opacity in three seconds
- stay for 1 second
- fade out in 3 seconds to 0% opacity
All images should do the same but with an offset in time by 2 seconds. As result all 3 images should be showed at the same time.
<div id="cycler">
<img class="active" src="http://lorempixel.com/720/576/cats/" alt="" />
<img src="http://lorempixel.com/720/576/sports/" alt="" />
<img src="http://lorempixel.com/720/576/food/" alt="" />
<img src="http://lorempixel.com/720/576/fashion/" alt="" />
</div>
Here is my starting fiddle
--
Here is the final code - http://jsfiddle.net/guest271314/9c32wkuk/14/ -
works as expected.
Thanks for your ideas guest271314!
css
js
jsfiddle http://jsfiddle.net/9c32wkuk/15/