I have created a css3 animation following like this
I am using the following Jquery to control time interval
$(document).ready(function(){
$('#web').addClass("fadeInLeft");
window.setTimeout(function(){
$('#development').addClass("fadeInLeft");
},300)
});
In the above example the animation happening at once only. I need this animation to repeat after some seconds. Also it must be repeat at infinity times.