Live Demo: Live Demo
HTML:
<div class="target">
<img src="bg-clock.png" alt="jQuery" />
</div>
<div class="target2">
<img src="bg-clock.png" alt="jQuery" />
</div>
CSS:
.target, .target2 {
display: none;
}
JQuery:
$(document).ready(function() {
$(".target").show( "drop",
{direction: "down"}, 1000 );
$(".target2").delay(1000).show( "drop",
{direction: "down"}, 1000 );
});
In the current setup, both DIVs appear simultaneously. However, I am looking to make 'target2' appear only after 'target1' has completed its animation, and the same sequence should follow for any additional DIV elements.