Animation working only once

i have an image displayed and an animation assigned to it. The image can be swiped left or right to view the next or previous image but the animation only works one time at the first image. i want the animation to work each time the image is changed and also how to implement pinch zoom on the image

<ion-content padding>

		<div  class=" " (swipe)="swipeEvent($event)" >
	<img   class="animated fadeInRight "   src="{{src}}" />
	</div> 
 
</ion-content>

Animate.css & wow.js work only once per page load as far as I know. It’s created for animation on web page scroll…

I think you’ll need additional javascript to make your animation activate per each swipe action…