• File: _animate.scss
  • Full Path: /home/aaryhspitl/domains/aaryawomenshospital.com/private_html/js/OwlCarousel2-2.3.4 (1)/OwlCarousel2-2.3.4/src/scss/_animate.scss
  • File size: 323 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel{
	.animated {
		animation-duration: 1000ms;
		animation-fill-mode: both;
	}
	.owl-animated-in {
		z-index: 0;
	}
	.owl-animated-out {
		z-index: 1;
	}
	.fadeOut {
		animation-name: fadeOut;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}