Looking at this HTML and CSS code:
HTML
<DIV class="newsPic"></DIV>
<DIV class="newsPicTwo"></DIV>
<DIV class="newsPicThree"></DIV>
CSS
.newsPic {
width: 500px;
height: 200px;
}
.newsPicTwo {
width: 500px;
height: 200px;
}
.newsPicThree {
width: 500px;
height: 200px;
}
Is there a way to smoothly fade in the "newsPic" DIV, then fade it out, followed by fading in "newsPicTwo" and so on in a loop? Additionally, can more DIVs or content be added inside "newsPic", "newsPicTwo", etc., and have them all fade in sequence accordingly?