I'm putting together an animation with animate css3
.img-minibox{
height:auto;
max-height: 200px;
overflow: hidden;
}
ul{
list-style-type: none;
margin-left:-40px;
}
ul li{
float:left;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><linkrel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<ul>
<a href=''>
<li class='col-sm-3 animated slideInDown'>
<div class='img-minibox'>
<img src='http://placehold.it/350x150' class='img-responsive'>
</div>
</li>
</a>
<a href=''>
<li class='col-sm-3 animated slideInDown'>
<div class='img-minibox'>
<img src='http://placehold.it/200x200' class='img-responsive'>
</div>
</li>
</a>
<a href=''>
<li class='col-sm-3 animated slideInDown'>
<div class='img-minibox'>
<img src='http://placehold.it/350x250' class='img-responsive'>
</div>
</li>
</a>
<a href=''>
<li class='col-sm-3 animated slideInDown'>
<div class='img-minibox'>
<img src='http://placehold.it/350x250' class='img-responsive'>
</div>
</li>
</a>
</ul>
The animation works but what I want to do is to start the animation in a cascade, this is when the first one comes in half the animation the second one starts, so the third one starts when the second one is halfway and so it goes. p>