so I am animating a "sale sign" image with this html:
<div id="onsale" class="container clearfix">
<p data-animate="fadeIn" data-delay="2200" >

</p>
and with this css to slow it down and repeating:
#onsale .animated {
opacity: 1;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
but instead I would like to fade in once and then do a pulse or flash infinitely. Can 2 animations be combined on same image or div? so one animation fires first and then the second animation starts after the first one ends? or better yet how about a fadeIn while its swinging (simultaneous animations)? code if possible?
Thank you
