I have three images and I would like them to
First Image: fadeIn, wait a while, then fadeOut; Second Image: (on the same place) fadeIn, wait a while, then fadeOut; Third Image: (on the same place) fadeIn, wait a while, then fadeOut;
//do something...
I have this stupidity so far.
$(document).ready(function() {
$('#imagemIntro1').fadeIn(3800);
setTimeout(function() {
$('#imagemIntro1').fadeOut(3800); }, 8000);
$('#imagemIntro2').fadeIn(3800);
setTimeout(function() {
$('#imagemIntro2').fadeOut(3800); }, 8000);
$('#imagemIntro3').fadeIn(3800);
setTimeout(function() {
$('#imagemIntro3').fadeOut(3800); }, 8000);
window.location.replace("http://www.something.com");
});
Can I have your help please?
I would love to learn how to do this, without a specific plugin... :D "I'm running out of time, so, I will use the suggested plugin since, this is really nothing special."
Thanks in advance, MEM