javascript - How do I fade in & fade out 3 divs with other divs inside that div -
i have following html & css.
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 possible fade in div "newspic". fade out. fade in "newspictwo" etc... , loop after it's finished? possible add many other divs / content inside "newspic", "newspictwo" etc , fade accordingly.
is possible? yes!
how? through js (dom, animate) , little css perhaps (transition, keyframes)
Comments
Post a Comment